Skip to content

Change pages

Change pages #32

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: [main, initial]
pull_request:
branches: [main, initial]
jobs:
workflow:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip==24.0
pip install --no-cache-dir tox==4.0.0 tox-gh-actions
- name: Tests with Tox
run: tox