22 lines
467 B
YAML
22 lines
467 B
YAML
|
name: audit
|
||
|
on: push
|
||
|
jobs:
|
||
|
audit:
|
||
|
runs-on: ubuntu-latest
|
||
|
name: audit
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- uses: actions/setup-python@v5
|
||
|
with:
|
||
|
python-version: 3.12
|
||
|
architecture: x64
|
||
|
|
||
|
- run: python --version
|
||
|
- run: pip --version
|
||
|
|
||
|
# The following pinned dependencies must be updated manually
|
||
|
- run: pip install nox==2024.4.15
|
||
|
- run: pip install poetry==1.8.3
|
||
|
|
||
|
- run: nox -s audit
|