Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- "dependabot/**"
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: 3.10
- name: Install nox
run: |
pip install nox[uv]
- name: Check code
if: always()
run: |
nox -s check_code
- name: Typecheck
if: always()
run: |
nox -s typecheck