Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #100
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: Lint and Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: install build dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libusb-1.0-0-dev libudev-dev | |
- name: Install Nox | |
run: | | |
pip3 install setuptools | |
pip3 install nox | |
- name: Lint with Flake8 and Black | |
run: | | |
python3 -m nox --session lint | |
- name: Test with doctest | |
run: | | |
python3 -m nox --session test-${{ matrix.python-version }} | |