CI: Remove recent from schemars job
We do not used `cargo --locked` in the schemars job so copying the recent lock file is deceiving.
This commit is contained in:
parent
8d7117bb0e
commit
1fb12e1917
|
@ -254,15 +254,12 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
# Note we do not use the recent lock file for schemars testing.
|
||||||
dep: [recent]
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout repo"
|
- name: "Checkout repo"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: "Select toolchain"
|
- name: "Select toolchain"
|
||||||
uses: dtolnay/rust-toolchain@stable
|
uses: dtolnay/rust-toolchain@stable
|
||||||
- name: "Copy lock file"
|
|
||||||
run: cp Cargo-${{ matrix.dep }}.lock Cargo.lock
|
|
||||||
- name: "Run test script"
|
- name: "Run test script"
|
||||||
run: ./contrib/run_task.sh schemars
|
run: ./contrib/run_task.sh schemars
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue