Skip to content

Commit

Permalink
Update sandbox.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Aug 26, 2023
1 parent 8769888 commit 0eb8795
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,11 @@ jobs:
matrix:
runner: ["windows-latest"]
steps:
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.x
- name: Check python
shell: bash
run: |
choco install ironpython
ipy.exe -c "import sys; print(sys.maxsize)"
ipy.exe -c "import struct; print(struct.calcsize('P'))"
ipy32.exe -c "import sys; print(sys.maxsize)"
ipy32.exe -c "import struct; print(struct.calcsize('P'))"
ipy.exe -c "import sys; assert sys.maxsize == 2147483647"
ipy.exe -c "import struct; assert struct.calcsize('P') == 7"
ipy.exe -c "import struct; assert struct.calcsize('P') == 8"
ipy32.exe -c "import sys; assert sys.maxsize == 2147483647"
ipy32.exe -c "import struct; assert struct.calcsize('P') == 4"

0 comments on commit 0eb8795

Please sign in to comment.