From c79e9de13c9c9f4f67894a463f715a44422ef69a Mon Sep 17 00:00:00 2001 From: Jonathan LEI Date: Wed, 10 Apr 2024 10:04:07 +0800 Subject: [PATCH] ci: check format and lint code --- .github/workflows/lint.yaml | 43 +++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/workflows/lint.yaml diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml new file mode 100644 index 0000000..7682419 --- /dev/null +++ b/.github/workflows/lint.yaml @@ -0,0 +1,43 @@ +on: + push: + branches: + - "master" + pull_request: + +name: "Linting" + +jobs: + lint: + name: "Lints" + runs-on: "ubuntu-latest" + steps: + - name: "Checkout source code" + uses: "actions/checkout@v3" + + - name: "Setup stable toolchain" + uses: "actions-rs/toolchain@v1" + with: + toolchain: "stable" + profile: "minimal" + override: true + + - name: "Use Rust cache" + uses: "Swatinem/rust-cache@v2" + with: + cache-on-failure: true + + - name: "Install prettier" + run: | + yarn global add prettier + + - name: "Check prettier format" + run: | + prettier --ignore-path .gitignore --check . + + - name: "Check Rust format" + run: | + cargo fmt --all -- --check + + - name: "Run Clippy lints" + run: | + cargo clippy --all --all-targets -- -D warnings