CI: Use original name
I've been a bit confused lately about pinning and the locks, at some stage recently I changed 'Set dependencies' to 'Copy lock file'. Its no biggy but the original that Kix wrote was correct and descriptive - it was me who was confused. Revert it back to the original.
This commit is contained in:
parent
2e8bd5f06a
commit
8d7117bb0e
|
@ -70,7 +70,7 @@ jobs:
|
|||
uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
toolchain: "1.56.1"
|
||||
- name: "Copy lock file"
|
||||
- name: "Set dependencies"
|
||||
run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock
|
||||
- name: "Run test script"
|
||||
run: ./contrib/run_task.sh msrv
|
||||
|
@ -109,7 +109,7 @@ jobs:
|
|||
uses: actions/checkout@v4
|
||||
- name: "Select toolchain"
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
- name: "Copy lock file"
|
||||
- name: "Set dependencies"
|
||||
run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock
|
||||
- name: "Run test script"
|
||||
run: ./contrib/run_task.sh docs
|
||||
|
@ -149,7 +149,7 @@ jobs:
|
|||
uses: dtolnay/rust-toolchain@v1
|
||||
with:
|
||||
toolchain: ${{ needs.Prepare.outputs.nightly_version }}
|
||||
- name: "Copy lock file"
|
||||
- name: "Set dependencies"
|
||||
run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock
|
||||
- name: "Run test script"
|
||||
run: ./contrib/run_task.sh bench
|
||||
|
@ -230,7 +230,7 @@ jobs:
|
|||
toolchain: ${{ needs.Prepare.outputs.nightly_version }}
|
||||
- name: Install src
|
||||
run: rustup component add rust-src
|
||||
- name: "Copy lock file"
|
||||
- name: "Set dependencies"
|
||||
run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock
|
||||
- name: "Run test script"
|
||||
run: ./contrib/run_task.sh asan
|
||||
|
|
Loading…
Reference in New Issue