Skip to content

Merge pull request #8 from SamTV12345/main #25

Merge pull request #8 from SamTV12345/main

Merge pull request #8 from SamTV12345/main #25

Workflow file for this run

name: Linting
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update Rust
run: rustup update
- name: Install Clippy
run: rustup component add clippy
- name: Lint
run: cargo clippy --all-targets --all-features -- -D warnings