Skip to content

Commit

Permalink
implement workflow for checking changes against pyQuil
Browse files Browse the repository at this point in the history
  • Loading branch information
MarquessV committed Nov 13, 2024
1 parent f725e9f commit 5a2fc78
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,28 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
with:
path: quil-rs
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: davidB/rust-cargo-make@v1
- uses: actions/checkout@v1
- uses: syphar/restore-virtualenv@v1
- name: Run quil-py tests, lints, and formatting checks.
run: cargo make --cwd quil-py
run:
- cargo make --cwd quil-rs/quil-py
- uses: actions/checkout@v4
with:
repository: "rigetti/pyquil"
path: pyquil
run:
- mypy pyquil/pyquil
- ruff check pyquil/pyquil
- (cd pyquil && pytest pyquil -x)

fmt:
name: Rustfmt
Expand Down

0 comments on commit 5a2fc78

Please # to comment.