Skip to content

Merge pull request #8 from xchux/feature/42-trapping-rain-water #1

Merge pull request #8 from xchux/feature/42-trapping-rain-water

Merge pull request #8 from xchux/feature/42-trapping-rain-water #1

Workflow file for this run

name: Code Quality Check
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
python-check:
name: Python Code Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff
run: |
# Run ruff on Python files in solutions directory
ruff check ./solutions