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 483201e commit e367a24
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test-concordia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,22 +47,24 @@ jobs:
steps:
- name: Checkout Concordia
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
continue-on-error: false

- name: Install Concordia
uses: ./.github/actions/install-concordia
with:
python-version: ${{ matrix.python-version }}
continue-on-error: false

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

- name: Lint Concordia
continue-on-error: ${{ github.event_name == 'workflow_dispatch' }}
run: pylint --errors-only concordia
continue-on-error: true

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

0 comments on commit e367a24

Please sign in to comment.