Skip to content

Commit 67edcbb

Browse files
committed
debug working dir
1 parent 35d2f0d commit 67edcbb

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/wheels.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@ jobs:
2525

2626
steps:
2727
- 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
2835
2936
# Need to grab the SDK version for the wheel name
3037
- name: Extract SDK Version
@@ -43,6 +50,7 @@ jobs:
4350
CIBW_ARCHS: "native"
4451
CIBW_BEFORE_TEST: "pip install pydantic cryptography"
4552
CIBW_TEST_COMMAND: "python3 ${{github.workspace}}/example/example.py"
53+
MACOSX_DEPLOYMENT_TARGET: 11.0
4654
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.TEST_SERVICE_ACCOUNT_TOKEN }}
4755
continue-on-error: true
4856
uses: pypa/[email protected]

0 commit comments

Comments
 (0)