Skip to content

Change version

Change version #35

Workflow file for this run

name: Linting and formatting
on:
push:
branches:
- master
pull_request:
jobs:
run-checks:
runs-on: ubuntu-24.04
steps:
- run: sudo apt-get install -y just
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11.9"
- uses: actions/cache@v3
with:
path: .venv
key: ${{ runner.os }}-${{ hashFiles('requirements/requirements-check.txt') }}
- run: just setup-check
- run: just check