Skip to content

Infrastructure Updates #412

Infrastructure Updates

Infrastructure Updates #412

Workflow file for this run

name: lint
on:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.13"
- run: pip install tox
- name: Test Lint
run: tox -e lint