Skip to content

Commit

Permalink
simplify run syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmehl committed Sep 21, 2023
1 parent f213a1f commit 7ba592d
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,15 @@ jobs:
- uses: actions/checkout@v2
- uses: ./.github/actions/poetrybuild
- name: Test with pytest
run: |
poetry run pytest
run: poetry run pytest

pylint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/poetrybuild
- name: Lint with pylint
run: |
poetry run pylint ossrfc/ tests/
run: poetry run pylint ossrfc/ tests/

formatting:
runs-on: ubuntu-20.04
Expand All @@ -68,8 +66,7 @@ jobs:
- uses: actions/checkout@v2
- uses: ./.github/actions/poetrybuild
- name: Test typing with mypy
run: |
poetry run mypy
run: poetry run mypy

reuse:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 7ba592d

Please sign in to comment.