TST: extend GHA test matrix to current Python versions #42
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: Linter | |
on: | |
push: | |
branches: '*' | |
pull_request: | |
branches: '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Install Python 3.8 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
architecture: 'x64' | |
- name: Install the Python dependencies | |
run: | | |
pip install flake8 | |
pip install -e . | |
- name: Run Linter | |
run: | | |
python -m flake8 jupyter_telemetry |