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 35d2f0d commit 67edcbbCopy full SHA for 67edcbb
.github/workflows/wheels.yml
@@ -25,6 +25,13 @@ jobs:
25
26
steps:
27
- uses: actions/checkout@v4
28
+ - name: List all files in the workspace
29
+ run: |
30
+ if [ "$(uname)" == "Linux" ] || [ "$(uname)" == "Darwin" ]; then
31
+ find $GITHUB_WORKSPACE
32
+ else
33
+ dir $GITHUB_WORKSPACE
34
+ fi
35
36
# Need to grab the SDK version for the wheel name
37
- name: Extract SDK Version
@@ -43,6 +50,7 @@ jobs:
43
50
CIBW_ARCHS: "native"
44
51
CIBW_BEFORE_TEST: "pip install pydantic cryptography"
45
52
CIBW_TEST_COMMAND: "python3 ${{github.workspace}}/example/example.py"
53
+ MACOSX_DEPLOYMENT_TARGET: 11.0
46
54
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.TEST_SERVICE_ACCOUNT_TOKEN }}
47
55
continue-on-error: true
48
56
uses: pypa/[email protected]
0 commit comments