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 32029ac commit 69663d1Copy full SHA for 69663d1
.github/actions/cross-tests/action.yml
@@ -28,8 +28,9 @@ runs:
28
tar -C /tmp -xzf /tmp/binaries.tar.gz
29
mv /tmp/cross ~/.cargo/bin
30
shell: bash
31
- - run: |
32
- cd ${{ inputs.package }}
33
- cross test --target ${{ inputs.target }} --no-default-features \
34
- --features ${{ inputs.features }}
+ - run: cross test \
+ --package ${{ inputs.package }} \
+ --target ${{ inputs.target }} \
+ --no-default-features \
35
+ --features ${{ inputs.features }}
36
0 commit comments