Skip to content

chore: update GitHub Actions release action to version 2 #3

chore: update GitHub Actions release action to version 2

chore: update GitHub Actions release action to version 2 #3

Workflow file for this run

name: Code Quality Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint_and_type_check:
name: Run Ruff and Mypy
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy ruff
- name: Run Ruff
run: ruff check .
- name: Run Mypy
run: mypy --strict .