Skip to content

Fix CI quality gates and cross-platform Bash selection (#1) #6

Fix CI quality gates and cross-platform Bash selection (#1)

Fix CI quality gates and cross-platform Bash selection (#1) #6

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
test-lint-typecheck:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Ruff
run: ruff check .
- name: Black (format check)
run: black --check .
- name: MyPy
run: mypy .
- name: Pytest
run: pytest -v --tb=short