File tree 3 files changed +13
-151
lines changed 3 files changed +13
-151
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- name : Linux CI
1
+ name : Tests
2
2
3
3
on : [push, pull_request]
4
4
@@ -8,11 +8,12 @@ concurrency:
8
8
9
9
jobs :
10
10
build :
11
- runs-on : ubuntu-latest
11
+ runs-on : ${{ matrix.platform }}
12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
15
15
python-version : ["3.10", "3.11", "3.12"]
16
+ platform : [ubuntu-latest, windows-latest, macos-12]
16
17
17
18
steps :
18
19
- name : Checkout source
41
42
c-compiler cxx-compiler
42
43
python=${{matrix.python-version}} wheel pip
43
44
45
+ - name : Install clang
46
+ shell : " bash -l {0}"
47
+ if : ${{ matrix.platform }} == 'macos-12'
48
+ run : |
49
+ conda activate env
50
+ conda install -y 'clang>=12.0.1,<17'
51
+
44
52
- name : Show info about `env` environment
45
53
shell : " bash -l {0}"
46
54
run : |
71
79
conda activate env
72
80
pytest -v
73
81
74
- - uses : codecov/codecov-action@v3
82
+ - uses : codecov/codecov-action@v4
75
83
with :
76
- # token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
77
- # files: ./coverage1.xml,./coverage2.xml # optional
78
- # flags: unittests # optional
79
- # name: codecov-umbrella # optional
80
- # fail_ci_if_error: true # optional (default = false)
81
- verbose : true # optional (default = false)
84
+ token : ${{ secrets.CODECOV_TOKEN }}
85
+ verbose : true
You can’t perform that action at this time.
0 commit comments