Skip to content

⬆ Bump actions/setup-python from 4 to 5 #31

⬆ Bump actions/setup-python from 4 to 5

⬆ Bump actions/setup-python from 4 to 5 #31

Workflow file for this run

name: Code Quality
on: [push, pull_request]
jobs:
lint-and-type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run isort
run: |
pip install isort
isort . --check-only
- name: Run Black
run: |
pip install black
black --check .
- name: Run Ruff
uses: chartboost/ruff-action@v1