Skip to content

Merge branch 'main' of github.com:shahen94/craft #6

Merge branch 'main' of github.com:shahen94/craft

Merge branch 'main' of github.com:shahen94/craft #6

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