-
In my rust workflow yaml file, I have In other words, what would I change here? job_rust_msrv_os:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- run: cargo build --verbose |
Beta Was this translation helpful? Give feedback.
Answered by
dscho
Oct 20, 2022
Replies: 2 comments
-
You should be able to run |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jtmoon79
-
In my case, this looked like job_rust_msrv_os:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- run: cargo build --verbose
- `` job_rust_msrv_os:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- run: |
git config --global core.protectNTFS false
- uses: actions/checkout@v2
- run: cargo build --verbose |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You should be able to run
git config --global ...
and that should be picked up by theactions/checkout
step.