We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f786855 commit af8c026Copy full SHA for af8c026
.github/workflows/ci.yml
@@ -64,3 +64,29 @@ jobs:
64
run: >-
65
python -m pytest -ra --cov --cov-report=xml --cov-report=term
66
--durations=20
67
+
68
+ checks-cibw:
69
+ name: >
70
+ Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }} (${{
71
+ matrix.arch }})
72
+ runs-on: ${{ matrix.runs-on }}
73
+ needs: [pre-commit]
74
+ strategy:
75
+ fail-fast: false
76
+ matrix:
77
+ include:
78
+ - runs-on: windows-latest
79
+ python-version: cp312
80
+ arch: "ARM64"
81
+ test-skip: "*-win_arm64"
82
83
+ steps:
84
+ - uses: actions/checkout@v4
85
+ with:
86
+ fetch-depth: 0
87
88
+ - uses: pypa/[email protected]
89
+ env:
90
+ CIBW_BUILD: "${{ matrix.python-version }}-*"
91
+ CIBW_ARCHS: "${{ matrix.arch }}"
92
+ CIBW_TEST_SKIP: "${{ matrix.test-skip }}"
0 commit comments