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:
Tobin C. Harding 2024-05-02 12:51:33 +10:00
parent 8d7117bb0e
commit 1fb12e1917
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 4 deletions

View File

@ -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