-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (58 loc) 路 1.76 KB
/
Copy pathbuild.yml
File metadata and controls
76 lines (58 loc) 路 1.76 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
70
71
72
73
74
75
76
name: build
# refer to https://docs.github.com/en/actions/guides/building-and-testing-python
on: [push]
jobs:
build-cpp:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Build C++
run: |
cmake -Bbuild ./extension
cmake --build build/ --target run_tests
- name: Test C++
run: ./build/run_tests
build-cpp-windows:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Build C++
run: |
cmake -Bbuild ./extension
cmake --build build/ --target run_tests
- name: Test C++
run: ./build/Debug/run_tests.exe
build:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.11", "3.14"]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies and build python module
run: |
python -m pip install --upgrade pip wheel setuptools
pip install --verbose .[dev]
- name: Lint
run: |
ruff check
- name: Test with pytest
run: |
pytest --cov=snail --cov-report=term-missing tests