Skip to content

chore(dates): update 2024 to 2025, and minor punctuation fix. #21

chore(dates): update 2024 to 2025, and minor punctuation fix.

chore(dates): update 2024 to 2025, and minor punctuation fix. #21

Workflow file for this run

# This file runs the tests in `tests/` with every push to GitHub
# They will run in parallel, and run on three operating systems:
# Ubuntu, Windows and Mac.
name: tests
on:
push:
workflow_dispatch:
jobs:
# Run tests on Ubuntu
tests-on-ubuntu:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install python and dependencies
uses: actions/setup-python@v4
with:
python-version: '3.13'
cache: 'pip'
- run: pip install -r requirements.txt
- name: Run tests
run: pytest
- name: List the environment variables
run: env
# Run tests on Windows
tests-on-windows:
runs-on: windows-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install python and dependencies
uses: actions/setup-python@v4
with:
python-version: '3.13'
cache: 'pip'
- run: pip install -r requirements.txt
- name: Run tests
run: pytest
- name: List the environment variables
run: env
# Run tests on Mac
tests-on-macos:
runs-on: macos-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install python and dependencies
uses: actions/setup-python@v4
with:
python-version: '3.13'
cache: 'pip'
- run: pip install -r requirements.txt
- name: Run tests
run: pytest
- name: List the environment variables
run: env