fix: support ND quick constructs being mistakenly passed in #1385
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
env: | |
FORCE_COLOR: 3 | |
concurrency: | |
group: ${ github.workflow }-${ github.ref } | |
cancel-in-progress: true | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- uses: pre-commit/[email protected] | |
- name: PyLint | |
run: | | |
echo "::add-matcher::$GITHUB_WORKSPACE/.github/matchers/pylint.json" | |
pipx run nox -s pylint | |
checks: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- "3.7" | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
name: Check Python ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Requirements check | |
run: python -m pip list | |
- name: Install package | |
run: python -m pip install -e ".[test]" | |
- name: Test package | |
run: python -m pytest | |
- name: Install plotting requirements too | |
if: matrix.python-version != '3.10' | |
run: python -m pip install -e ".[test,plot]" | |
- name: Test plotting too | |
if: matrix.python-version != '3.10' | |
run: python -m pytest --mpl |