File tree Expand file tree Collapse file tree 2 files changed +18
-9
lines changed Expand file tree Collapse file tree 2 files changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,14 @@ name: Build
2
2
on : [push, pull_request]
3
3
4
4
jobs :
5
+ pre-commit :
6
+ name : Run pre-commit hooks
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v3
10
+ - uses : actions/setup-python@v3
11
+ - uses : pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd
12
+
5
13
build-wheels :
6
14
name : Build wheels for ${{ matrix.os }}
7
15
runs-on : ${{ matrix.runs-on }}
@@ -10,14 +18,14 @@ jobs:
10
18
include :
11
19
- os : linux-intel
12
20
runs-on : ubuntu-latest
13
- - os : linux-arm
14
- runs-on : ubuntu-24.04-arm
15
- - os : windows-intel
16
- runs-on : windows-latest
17
- - os : macos-intel
18
- runs-on : macos-13
19
- - os : macos-arm
20
- runs-on : macos-latest
21
+ # - os: linux-arm
22
+ # runs-on: ubuntu-24.04-arm
23
+ # - os: windows-intel
24
+ # runs-on: windows-latest
25
+ # - os: macos-intel
26
+ # runs-on: macos-13
27
+ # - os: macos-arm
28
+ # runs-on: macos-latest
21
29
22
30
steps :
23
31
- uses : actions/checkout@v4
40
48
echo "Found coverage files: $FILES"
41
49
echo "files=$FILES" >> $GITHUB_OUTPUT
42
50
43
- - name : Coveralls
51
+ - name : Upload to Coveralls
44
52
if : matrix.os == 'linux-intel'
45
53
uses : coverallsapp/github-action@v2
46
54
with :
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ optional = true
74
74
[tool .setuptools_scm ]
75
75
76
76
[tool .cibuildwheel ]
77
+ build = [" cp313-manylinux_x86_64" ]
77
78
environment-pass = [" RUNNER_OS" ]
78
79
test-groups = [" dev" ]
79
80
test-command = [
You can’t perform that action at this time.
0 commit comments