Skip to content

Checking d6da52dd967729b33371364e75ca4fa70749035d #1

Checking d6da52dd967729b33371364e75ca4fa70749035d

Checking d6da52dd967729b33371364e75ca4fa70749035d #1

Workflow file for this run

---
name: Rust lint and checks
run-name: Checking ${{ github.sha }}
on: # yamllint disable-line rule:truthy
- push
- pull_request
jobs:
rustfmt-clippy-check:
runs-on: ubuntu-latest
steps:
- name: Check out ${{ github.repository }}:${{ github.ref_name }}
uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy, check
- run: rustfmt src/*
- uses: actions-rs/clippy@master
with:
args: --all-features --all-targets
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check