Skip to content

chore: migrate away from pdm and update ci files #92

chore: migrate away from pdm and update ci files

chore: migrate away from pdm and update ci files #92

Workflow file for this run

name: lint
on:
pull_request:
push:
branches: [ main ]
workflow_dispatch:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: 'pip' # caching pip dependencies
- run: pip install -r requirements.txt
- name: Ruff linting
uses: chartboost/ruff-action@v1
- name: Black formatting
uses: psf/black@stable
- name: Mypy
run: |
pip install mypy
mypy bitsrun/