Skip to content

Initial workflow automation: nox and automated pip-compile #5

Initial workflow automation: nox and automated pip-compile

Initial workflow automation: nox and automated pip-compile #5

Workflow file for this run

---
name: nox
"on":
push:
branches-ignore:
- 'patchback/**'
pull_request:
workflow_dispatch:
jobs:
nox:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- session: static
python-versions: "3.11"
- session: formatters_check
python-versions: "3.11"
- session: typing
python-versions: "3.11"
name: "Run nox ${{ matrix.session }} session"
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Setup nox
uses: wntrblm/[email protected]
with:
python-versions: "${{ matrix.python-versions }}"
- name: "Run nox -e ${{ matrix.session }}"
run: |
nox -e "${{ matrix.session }}"