This repository was archived by the owner on Nov 23, 2025. It is now read-only.
[pre-commit.ci] auto fixes from pre-commit.com hooks #360
This file contains hidden or 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: Tests | |
| on: | |
| push: | |
| paths-ignore: | |
| - '**.md' # Ignore documentation for tests | |
| - '.pre-commit-config.yaml' # Stop pre-commit CI triggering tests. | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| - '.pre-commit-config.yaml' | |
| jobs: | |
| run-test: | |
| name: ${{ matrix.python-version }}-${{ matrix.build-type }}-${{ matrix.architecture }}-${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - "ubuntu-latest" | |
| - "windows-latest" | |
| python-version: | |
| - "3.10" | |
| - "3.11" | |
| architecture: | |
| - x64 | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Set up python | |
| id: setup-python | |
| uses: actions/[email protected] | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| architecture: ${{ matrix.architecture }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip pytest | |
| python -m pip install . | |
| - name: Run tests | |
| run: | | |
| python -m pytest tests/ |