Skip to content

chore: use nox to run tests #25

chore: use nox to run tests

chore: use nox to run tests #25

Workflow file for this run

name: Testing Plugin
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
lektor-version: [latest, stable]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: pipx run nox "tests-${{ matrix.python-version }}(lektor_version='${{ matrix.lektor-version }}')"