-
Notifications
You must be signed in to change notification settings - Fork 55
37 lines (33 loc) · 876 Bytes
/
test.yml
File metadata and controls
37 lines (33 loc) · 876 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
name: Test
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
os:
- macos-latest
- ubuntu-slim
- windows-latest
steps:
- uses: actions/checkout@v6
- run: echo "${{ matrix.python-version }}" > .python-version
- uses: jdx/mise-action@v4
- run: mise install # retry for network issues
- run: mise pip-install || mise pip-install # retry for network issues
- run: ./build_and_test.sh
shell: bash
- name: Publish Test Report
uses: mikepenz/action-junit-report@v6
if: always()
with:
detailed_summary: true