Skip to content

Update actions/checkout digest to 44c2b7a #72

Update actions/checkout digest to 44c2b7a

Update actions/checkout digest to 44c2b7a #72

Workflow file for this run

name: Test
on: [ push ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-2022, macos-12]
steps:
- name: Checkout
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
- name: Format
run: cargo fmt -- --check
- name: Lint
run: cargo clippy -- --no-deps
- name: Build
run: cargo build
- name: Test
run: cargo test