Skip to content

(github) fix: separate workflows + fix toolchain installation #2

(github) fix: separate workflows + fix toolchain installation

(github) fix: separate workflows + fix toolchain installation #2

Workflow file for this run

name: Clippy
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
- name: Cargo clippy
run: cargo clippy --all -- --verbose -D warnings