Skip to content

Give the possibility to get logs #59

Give the possibility to get logs

Give the possibility to get logs #59

Workflow file for this run

name: Lint
on: [push, pull_request]
permissions:
contents: read
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: astral-sh/ruff-action@v3
with:
args: "format --check --diff"
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[test,lint]"
- name: Run mypy
run: mypy pystages