okay just don't run it then. fine #12
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: Run CI | |
on: | |
push: | |
branches: main | |
permissions: | |
contents: read | |
concurrency: | |
group: ci | |
cancel-in-progress: false | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Run pre-commit hooks | |
env: | |
SKIP: pyright | |
uses: pre-commit/action@v3.0.0 | |
- name: Install Nox | |
run: pip install nox | |
- name: Run Nox | |
run: nox |