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 9f28a43 commit d4fdb69Copy full SHA for d4fdb69
.github/workflows/ci.yml
@@ -54,8 +54,11 @@ jobs:
54
runs-on: ${{ matrix.os }}
55
steps:
56
- uses: actions/checkout@v4
57
- - run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -y | sh
58
- if: matrix.os == 'windows-11-arm'
+ - run: |
+ curl -L -o foo.sh https://sh.rustup.rs
59
+ chmod +x foo.sh
60
+ ./foo.sh -y
61
+ if: matrix.os == 'windows-11-arm'
62
- name: Set up Python
63
uses: actions/setup-python@v5
64
with:
0 commit comments