Skip to content

Bump Swatinem/rust-cache from 1 to 2 #109

Bump Swatinem/rust-cache from 1 to 2

Bump Swatinem/rust-cache from 1 to 2 #109

Workflow file for this run

name: pr
on: [pull_request]
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: taiki-e/install-action@v2
with:
tool: just
- uses: actions-rs/[email protected]
with:
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
with:
sharedKey: debug-build
- run: just test
lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: taiki-e/install-action@v2
with:
tool: just
- run: |
echo "RUST_TOOLCHAIN_NIGHTLY=$(cat ./rust-toolchain-nightly)" >> $GITHUB_ENV
- uses: actions-rs/[email protected]
with:
toolchain: ${{ env.RUST_TOOLCHAIN_NIGHTLY }}
components: rustfmt
- uses: actions-rs/[email protected]
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
with:
sharedKey: debug-build-nightly
- run: just lint "strict"