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 3677bcc commit 6b0d1f6Copy full SHA for 6b0d1f6
.github/workflows/build_wheels_and_release.yml
@@ -5,7 +5,7 @@ on:
5
branches:
6
- main
7
tags:
8
- - 'v*'
+ - "v*"
9
pull_request:
10
11
jobs:
@@ -14,15 +14,15 @@ jobs:
14
runs-on: ${{ matrix.os }}
15
strategy:
16
matrix:
17
- os: [ubuntu-20.04, macos-11]
+ os: [ubuntu-20.04, macos-latest]
18
19
steps:
20
- uses: actions/checkout@v2
21
22
- name: Set up Python
23
uses: actions/setup-python@v2
24
with:
25
- python-version: '3.10'
+ python-version: "3.10"
26
27
- name: Install cibuildwheel
28
run: pip install cibuildwheel==2.20.0
@@ -31,7 +31,7 @@ jobs:
31
run: |
32
python -m cibuildwheel --output-dir wheelhouse
33
env:
34
- CIBW_BUILD_VERBOSITY: '1'
+ CIBW_BUILD_VERBOSITY: "1"
35
working-directory: ./quaddtype
36
37
- uses: actions/upload-artifact@v2
0 commit comments