Define max_step from minimum variations of samples, nsteps (#666) #200
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
jobs: | |
full-tests: | |
runs-on: ${{ matrix.os }} | |
env: | |
# Set Matplotlib backend to fix flaky execution on Windows | |
MPLBACKEND: agg | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- name: Check out Pulser | |
uses: actions/checkout@v4 | |
- name: Pulser + pytest setup | |
uses: ./.github/workflows/pulser-setup | |
with: | |
python-version: ${{ matrix.python-version }} | |
extra-packages: pytest | |
- name: Run the unit tests & generate coverage report | |
run: pytest --cov --cov-fail-under=100 |