Skip to content

Lower Python requirement to >=3.9 and verify install in conda+docker … #27

Lower Python requirement to >=3.9 and verify install in conda+docker …

Lower Python requirement to >=3.9 and verify install in conda+docker … #27

Workflow file for this run

name: Code quality
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
code-quality:
strategy:
matrix:
python: ["3.9","3.10", "3.11", "3.12", "3.13"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install
run: python3 -m pip install .
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install black
python3 -m pip install mypy
- name: Run compileall
run: python3 -m compileall src
- name: Run black
run: python3 -m black --check src