Temporarily turn off harden-runner. #47
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: CI | |
on: | |
push: | |
branches: [trunk] | |
tags: ["*"] | |
pull_request: | |
branches: [trunk] | |
workflow_dispatch: | |
env: | |
FORCE_COLOR: "1" | |
PIP_DISABLE_VERSION_CHECK: "1" | |
permissions: | |
contents: read | |
jobs: | |
tests: | |
name: nox on ${{ matrix.python-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up PDM | |
uses: pdm-project/setup-pdm@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: "Install dependencies" | |
run: | | |
python -VV | |
python -Im site | |
python -Im pip install --upgrade pip setuptools wheel | |
python -Im pip install --upgrade nox | |
python -Im nox --version | |
- name: "Run CI suite with nox" | |
run: "python -Im nox --non-interactive --python ${{ matrix.python-version }}" |