Bump tj-actions/verify-changed-files from 13 to 17 in /.github/workflows #28
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: main | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install build tools | |
run: | | |
python -m pip install --upgrade pip pre-commit setuptools nox | |
- name: Run pre-commit | |
run: | | |
pre-commit run --all-files | |
- name: Run nox tests | |
run: | | |
nox |