Skip to content

CI Checks

CI Checks #3

Workflow file for this run

name: Lint
on:
pull_request:
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@master
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: fmt, clippy
- name: Run fmt
run: make lint