Skip to content

fix: maintain test collection order (#22) #68

fix: maintain test collection order (#22)

fix: maintain test collection order (#22) #68

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
runs-on: [ubuntu-latest]
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v3
- name: 🐍 Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: 📥 Install test dependencies
run: |
pip install poetry
PYTHON=python${{ matrix.python-version }} make venv
- name: 🪄 Lint
run: |
pip install poetry
PYTHON=python${{ matrix.python-version }} make lint
- name: 🧪 Tests
run: |
pip install poetry
PYTHON=python${{ matrix.python-version }} make unit-tests