Skip to content

Commit

Permalink
Update test-concordia.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jagapiou authored Sep 12, 2024
1 parent b81777f commit 483201e
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/test-concordia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ concurrency:
permissions: read-all

jobs:
pytest:
test-concordia:
name: Test Concordia
runs-on: ${{ matrix.os }}
env:
Expand All @@ -41,7 +41,7 @@ jobs:
matrix:
os:
- macos-12
- ubuntu-20.04
- ubuntu-latest
python-version:
- '3.11'
steps:
Expand All @@ -54,10 +54,15 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Test Concordia
run: pytest concordia
continue-on-error: ${{ github.event_name == 'workflow_dispatch' }}
run: |
exit 1
pytest concordia
- name: Lint Concordia
continue-on-error: ${{ github.event_name == 'workflow_dispatch' }}
run: pylint --errors-only concordia

- name: Typecheck Concordia
continue-on-error: ${{ github.event_name == 'workflow_dispatch' }}
run: pytype concordia

0 comments on commit 483201e

Please sign in to comment.