chore(deps): bump actions/upload-artifact from 3.1.3 to 4.3.1 #549
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: Tests | |
on: | |
- push | |
- pull_request | |
jobs: | |
tests: | |
name: Python ${{ matrix.python-version }} checks | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- name: Check out the repository | |
uses: actions/[email protected] | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install -r requirements-all.txt | |
pip install . | |
- name: Run checks | |
run: | | |
./checks.sh | |
- name: Upload coverage data | |
uses: "actions/[email protected]" | |
with: | |
name: coverage-data | |
path: ".coverage" | |
- name: Upload documentation | |
uses: "actions/[email protected]" | |
with: | |
name: docs | |
path: docs/_build |