Skip to content

Commit

Permalink
continue-on-error at workflow level
Browse files Browse the repository at this point in the history
  • Loading branch information
MarquessV committed Nov 15, 2024
1 parent 5572ae3 commit 2e3f507
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/validate-downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
name: Check compatibility with downstream packages

jobs:
continue-on-error: true
check-pyquil:
name: Check compatibility with pyQuil
runs-on: ubuntu-latest
Expand Down Expand Up @@ -35,21 +36,18 @@ jobs:
maturin develop -m quil-rs/quil-py/Cargo.toml
cd pyquil
- name: Run mypy
id: mypy
continue-on-error: true
- name: Run ruff
id: ruff
run: |
mypy pyquil
- name: Run ruff
id: ruff
continue-on-error: true
run: |
ruff check pyquil
- name: Run pytest
id: pytest
continue-on-error: true
run: |
pytest test/unit -x
Expand Down

0 comments on commit 2e3f507

Please sign in to comment.