-
Notifications
You must be signed in to change notification settings - Fork 5
39 lines (31 loc) · 1005 Bytes
/
Copy pathdaily.yaml
File metadata and controls
39 lines (31 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Daily Unit Tests
on:
schedule:
- cron: '0 8 * * 1-5'
workflow_dispatch:
concurrency:
group: daily-${{ github.ref }}
cancel-in-progress: true
jobs:
unit:
name: Unit (${{ matrix.os }}, py${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macos-26, windows-2025-vs2026]
python-version: ["3.12", "3.13", "3.14"]
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install testing dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[testing]
- name: Run unit tests
run: python -m pytest tests/unit