Skip to content

Update LICENSE copyright year from 2021 to 2025 #478

Update LICENSE copyright year from 2021 to 2025

Update LICENSE copyright year from 2021 to 2025 #478

Workflow file for this run

name: Unit Tests
on: [push]
permissions:
contents: read
jobs:
unit_tests:
name: Unit Tests
runs-on: ${{matrix.os}}
strategy:
matrix:
python-version: ["3.12", "3.9"]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.test.txt
- name: Run unit tests
run: |
pytest