build(deps): bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #99
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: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: | |
- "3.6.7" | |
- "3.7.1" | |
- "3.8.0" | |
- "3.9.0" | |
- "3.10.0" | |
- "3.11.0" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v3" | |
- uses: "actions/setup-python@v4" | |
with: | |
python-version: '${{ matrix.python-version }}' | |
- name: "Install funzip" | |
run: | | |
sudo apt-get update | |
sudo apt-get install unzip | |
- name: "Install package and python dependencies" | |
run: | | |
pip install .[dev] | |
- name: "Test" | |
run: | | |
pytest --cov | |
- uses: codecov/codecov-action@v3 |