File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # SCM syntax highlighting & preventing 3-way merges
2+ pixi.lock merge =binary linguist-language =YAML linguist-generated =true
Original file line number Diff line number Diff line change 1+ name : Run tests with pixi
2+
3+ on :
4+ workflow_dispatch :
5+ pull_request :
6+
7+ jobs :
8+ pixi-test :
9+ name : ' [pixi:${{ matrix.os }}]'
10+ runs-on : ${{ matrix.os }}
11+ strategy :
12+ fail-fast : false
13+ matrix :
14+ os : [
15+ ubuntu-22.04,
16+ ubuntu-24.04-arm,
17+ macos-latest,
18+ windows-2019
19+ ]
20+ steps :
21+ - uses : actions/checkout@v4
22+
23+ - name : Set up pixi
24+ uses : prefix-dev/setup-pixi@v0.8.1
25+
26+ - name : Build and test the project
27+ run : pixi run test
Original file line number Diff line number Diff line change 1- . *
21.DS_Store
32* .coverage
43* .egg-info
@@ -32,3 +31,8 @@ doc/html
3231ipch
3332Debug
3433Release
34+
35+ # pixi environments
36+ .pixi
37+ * .egg-info
38+ .build
Original file line number Diff line number Diff line change 1- cmake_minimum_required (VERSION 2.8.3 )
1+ cmake_minimum_required (VERSION 2.8.3...3.10 )
22project (serial)
33
44if (APPLE )
You can’t perform that action at this time.
0 commit comments