Skip to content

mounting_holes: Approve library check messages #570

mounting_holes: Approve library check messages

mounting_holes: Approve library check messages #570

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: ubuntu-24.04
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "${{ matrix.python-version }}"
- name: Install dependencies
run: pip install .[test]
- name: Run pytest
run: pytest
- name: Run mypy
run: mypy .
- name: Run ruff check
run: ruff check .
- name: Run ruff format
run: ruff format --check