-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (55 loc) · 1.39 KB
/
Copy pathCI.yml
File metadata and controls
69 lines (55 loc) · 1.39 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: CI
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
build-test:
name: Build and Test
runs-on: ${{ matrix.os.instance }}
timeout-minutes: 15
permissions:
contents: read
strategy:
fail-fast: false
matrix:
os:
- category: windows
platform: x64
instance: windows-latest
- category: ubuntu
platform: x64
instance: ubuntu-latest
- category: macos
platform: x64
instance: macos-latest
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
exclude:
- os: { category: macos }
python: "3.9"
- os: { category: macos }
python: "3.10"
steps:
- name: Set Environment on macOS
uses: maxim-lobanov/setup-xamarin@v1
if: ${{ matrix.os.category == 'macos' }}
with:
mono-version: latest
- name: Checkout code
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: "8.0.x"
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python }}
- name: Sync
run: |
uv sync --all-extras --dev
- name: Test
run: |
uv run pytest tests