Skip to content

Commit

Permalink
Update Github actions to match other Python projects
Browse files Browse the repository at this point in the history
  • Loading branch information
mill1000 committed Nov 6, 2024
1 parent d7e81d2 commit f00d364
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,28 @@ name: Code Quality Checks

on:
push:
branches: [ "main" ]
branches: ["main"]
pull_request:
branches: [ "main" ]

# Kill existing jobs
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
check-autopep8-isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-autopep8
- run: |
python -m pip install --upgrade pip
pip install autopep8 isort
- run: autopep8 --diff --exit-code $(git ls-files '*.py')
- run: isort --diff --check $(git ls-files '*.py')
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-autopep8
- run: |
python -m pip install --upgrade pip
pip install autopep8 isort
- run: autopep8 --diff --exit-code $(git ls-files '*.py')
- run: isort --diff --check $(git ls-files '*.py')

0 comments on commit f00d364

Please sign in to comment.