Skip to content

build(deps): bump nox from 2024.4.15 to 2024.10.9 #208

build(deps): bump nox from 2024.4.15 to 2024.10.9

build(deps): bump nox from 2024.4.15 to 2024.10.9 #208

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Run format checks
run: |
pip install nox
nox -s format_check
type-check:
name: Type-check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Run pyright
run: |
pip install nox
nox -s typecheck
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Run tests
run: |
pip install nox
nox -s test