Skip to content

Commit

Permalink
Merge pull request #413 from waywardmonkeys/ci-update-checkout-action
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanieu committed Oct 21, 2023
2 parents be9dbe1 + 4d97009 commit 6ce132e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Expand Up @@ -34,7 +34,7 @@ jobs:
os: ubuntu

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: rustup default ${{ matrix.channel }}
- run: cargo build --all
- run: cargo test --all
Expand All @@ -51,20 +51,20 @@ jobs:
#- x86_64-unknown-redox
#- x86_64-linux-android
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: rustup default nightly
- run: rustup target add ${{ matrix.target }}
- run: cargo build --workspace --target ${{ matrix.target }} --features nightly
build_docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: rustup default nightly
- run: cargo doc --workspace --features arc_lock,serde,deadlock_detection --no-deps -p parking_lot -p parking_lot_core -p lock_api
benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: rustup default nightly
- run: |
cd benchmark
Expand Down

0 comments on commit 6ce132e

Please sign in to comment.