Skip to content

Commit

Permalink
github: Run lint/format/type
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptomilk committed Oct 29, 2024
1 parent 82d14db commit ae5501e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,21 @@ jobs:
python -m pip install tox tox-gh-actions
- name: Test with tox
run: tox

check:
runs-on: ubuntu-latest
strategy:
matrix:
toxenv:
- "lint"
- "format"
- "type"
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get install libkrb5-dev
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: "Run tox for ${{ matrix.toxenv }}"
run: "tox -e ${{ matrix.toxenv }}"

0 comments on commit ae5501e

Please sign in to comment.