Skip to content

Update actions/checkout digest to 692973e #295

Update actions/checkout digest to 692973e

Update actions/checkout digest to 692973e #295

Workflow file for this run

on: [push]
jobs:
test:
name: Format and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo fmt --all -- --check && cargo test
build:
name: Build
runs-on: ubuntu-latest
needs: [test]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo build --release --all-features