Skip to content

chore(deps): update actions/checkout digest to 11bd719 #21

chore(deps): update actions/checkout digest to 11bd719

chore(deps): update actions/checkout digest to 11bd719 #21

Workflow file for this run

name: test suite
on:
push:
branches: main
pull_request:
jobs:
test:
name: Build and Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: clippy, rustfmt
- name: Build and test
run: cargo test --all-features
- name: Lint
run: cargo clippy -- -Dwarnings