Skip to content

Merge branch 'main' of https://github.com/schote/spectrum-console #284

Merge branch 'main' of https://github.com/schote/spectrum-console

Merge branch 'main' of https://github.com/schote/spectrum-console #284

Workflow file for this run

name: 'Static Tests'
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install ".[lint]"
- name: Run ruff check
run: ruff check
- name: Run mypy
run: mypy src