Skip to content

Commit 1af1f76

Browse files
committed
Test
1 parent 2a04a68 commit 1af1f76

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@ name: Build
22
on: [push, pull_request]
33

44
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+
513
build-wheels:
614
name: Build wheels for ${{ matrix.os }}
715
runs-on: ${{ matrix.runs-on }}
@@ -10,14 +18,14 @@ jobs:
1018
include:
1119
- os: linux-intel
1220
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
2129

2230
steps:
2331
- uses: actions/checkout@v4
@@ -40,7 +48,7 @@ jobs:
4048
echo "Found coverage files: $FILES"
4149
echo "files=$FILES" >> $GITHUB_OUTPUT
4250
43-
- name: Coveralls
51+
- name: Upload to Coveralls
4452
if: matrix.os == 'linux-intel'
4553
uses: coverallsapp/github-action@v2
4654
with:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ optional = true
7474
[tool.setuptools_scm]
7575

7676
[tool.cibuildwheel]
77+
build = ["cp313-manylinux_x86_64"]
7778
environment-pass = ["RUNNER_OS"]
7879
test-groups = ["dev"]
7980
test-command = [

0 commit comments

Comments
 (0)