Run nox -s lint on GitHub actions

This commit is contained in:
Alexander Hess 2024-09-10 02:47:46 +02:00
parent f98491a6b5
commit 3e3182353e
Signed by: alexander
GPG key ID: 344EA5AB10D868E0

21
.github/workflows/lint.yml vendored Normal file
View file

@ -0,0 +1,21 @@
name: lint
on: push
jobs:
lint:
runs-on: ubuntu-latest
name: lint
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 lint