Fix missing default parameter #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |