Skip to content

Update docs workflow to use actions/deploy-pages version 4 #38

Update docs workflow to use actions/deploy-pages version 4

Update docs workflow to use actions/deploy-pages version 4 #38

Workflow file for this run

name: Run Tests
on:
push:
branches:
- "**"
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
steps:
- name: 📂 Check-Out Repository
uses: actions/checkout@v4
- name: 🐍 Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: "pyproject.toml"
- name: ⏬ Install Required Packages
run: |
python -m pip install --upgrade pip
pip install .
- name: 📋 Run Tests
run: |
cd tests
python ./run_tests.py