From 82a0d80ee79b4360569097780a266d1db576bf93 Mon Sep 17 00:00:00 2001 From: Nugine Date: Sat, 22 Feb 2025 15:09:42 +0800 Subject: [PATCH] rename --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21b7e4b2..ec363c09 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: runs-on: ubuntu-latest steps: - - name: install system dependencies + - name: Install system dependencies run: | sudo apt update sudo apt install -y \ @@ -63,13 +63,13 @@ jobs: with: cache-on-failure: true - - name: format + - name: Format run: cargo fmt --all --check - - name: lint + - name: Lint run: cargo check # run: cargo clippy # run: cargo clippy -- -D warnings - - name: test + - name: Test run: cargo test --all --exclude e2e_test