Skip to content

ci: Add build to "Other" section for release docs #20

ci: Add build to "Other" section for release docs

ci: Add build to "Other" section for release docs #20

Workflow file for this run

# Runs lint, style (black) and type checks
name: Style
on:
pull_request:
push:
branches: ['main']
jobs:
test:
name: Run linting, style and type checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Check formatting
run: poetry run ruff format atmos_validation --check
- name: Check linting
run: poetry run ruff check atmos_validation
- name: Static type checking
run: poetry run pyright atmos_validation