Skip to content

Move starter_repo directory to root level #1

Move starter_repo directory to root level

Move starter_repo directory to root level #1

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Run ruff
run: ruff check .
- name: Run mypy
run: mypy src tests