Skip to content

chore: pin GitHub Actions to commit SHAs #28

chore: pin GitHub Actions to commit SHAs

chore: pin GitHub Actions to commit SHAs #28

Workflow file for this run

name: CI
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
- name: Install Rust
run: |
rustup component add rustfmt
rustup component add clippy
- name: Check Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --tests --benches -- -D clippy::all
- name: Test
run: cargo test
env:
RUST_BACKTRACE: 1