Skip to content

Merge branch 'uncscode:main' into main #507

Merge branch 'uncscode:main' into main

Merge branch 'uncscode:main' into main #507

Workflow file for this run

name: lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
merge_group:
branches: [ main ]
jobs:
linting:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
linter: ["flake8", "pylint"]
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/[email protected]
with:
python-version: "3.12"
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install pytest ${{ matrix.linter }}
python -m pip install .
-
if: ${{ matrix.linter == 'flake8' }}
name: Lint with flake8
run: |
flake8 . --config .github/.flake8
-
if: ${{ matrix.linter == 'pylint' }}
name: Lint with pylint
run: |
pylint $(find particula/ -name "*.py" | xargs)