Skip to content

Upstream changes

Upstream changes #13

Workflow file for this run

name: Nox
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
# Limit this workflow to a single run at a time per-branch to avoid wasting worker resources
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
# JOB
nox-other:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
session: [audit, precommit]
steps:
- uses: level12/coppy/gh-actions/nox-run@main
with:
nox-session: ${{ matrix.session }}
# JOB
nox-pytest:
runs-on: ubuntu-latest
permissions:
id-token: write # For codecov OIDC
steps:
- uses: level12/coppy/gh-actions/nox-run@main
with:
nox-session: pytest
- uses: codecov/codecov-action@v5
with:
use_oidc: true