Skip to content

Test on push

Test on push #7

Workflow file for this run

name: Python tests
on:
push:
branches: [ '*' ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.15-dev"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install app in editable mode
run: |
pip install -e .
- name: Check legendary version
run: |
legendary --version
- name: Check legendary status
run: |
legendary status