Skip to content

build: Update scaffolding, tooling #74

build: Update scaffolding, tooling

build: Update scaffolding, tooling #74

Workflow file for this run

name: Linters
on:
pull_request:
push:
branches: [main]
jobs:
linters:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
with:
fetch-depth: 0
# sparse-checkout: |
# pyproject.toml
# sparse-checkout-cone-mode: false
- name: Install poetry
run: pipx install poetry
- name: Set up python environment
uses: actions/setup-python@v4
with:
cache: 'poetry'
python-version: '3.12'
- run: poetry install --no-root --with=dev --sync
- run: poetry run cz check --rev-range origin/main..HEAD
shell: bash
if: always()