Skip to content

Commit

Permalink
ga: reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
hrw committed Oct 26, 2024
1 parent ecd01c0 commit b238478
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/python-lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,26 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true

- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
flake8 . --show-source --statistics
- name: Test with pytest
run: |
pytest -v # --tb=no

0 comments on commit b238478

Please sign in to comment.