Skip to content

Merge pull request #11 from carbonplan/testing_deadline #43

Merge pull request #11 from carbonplan/testing_deadline

Merge pull request #11 from carbonplan/testing_deadline #43

Workflow file for this run

name: lint
on:
pull_request:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install the project
run: uv sync --all-groups
- name: Run pre-commit
run: uv run pre-commit run --all-files