-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (39 loc) · 979 Bytes
/
test.yaml
File metadata and controls
41 lines (39 loc) · 979 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
40
41
name: test
on:
push:
branches:
- "main"
- "feature/**"
- "copilot/**"
pull_request:
branches:
- "main"
jobs:
test:
strategy:
matrix:
platform:
- "ubuntu-latest"
python-version:
- "3.13"
runs-on: ${{ matrix.platform }}
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- name: Set up uv with caching enabled
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install actionlint
shell: bash
run: |
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) latest /usr/local/bin
- name: Run CI tests
shell: bash
run: |
make ci-test
make ci-test-docs