Skip to content

Upgrade to Mise

Upgrade to Mise #12

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
name: Python ${{ matrix.python-version }}
env:
PYTHON_VERSION: ${{ matrix.python-version }}
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Install mise
uses: jdx/mise-action@v2
- name: Install Dependencies
run: mise run install
- name: Code Quality
run: uv run black . --check
- name: Test with pytest
run: mise run test