Skip to content

ci: upgrade GitHub Actions to Node 24 + add CODEOWNERS and Dependabot #494

ci: upgrade GitHub Actions to Node 24 + add CODEOWNERS and Dependabot

ci: upgrade GitHub Actions to Node 24 + add CODEOWNERS and Dependabot #494

Workflow file for this run

name: Run tests
on:
pull_request:
branches: [ release, main ]
push:
branches: [ release, main ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.9
uses: actions/setup-python@v6
with:
python-version: 3.9
- name: Install dependencies
run: |
pip install .[dev]
- name: Test lint, types, and format
run: make test