From ef6eba61a79c45d37e173a5dd29991f477c171ca Mon Sep 17 00:00:00 2001 From: phoenix Date: Mon, 3 Feb 2025 00:32:31 +0000 Subject: [PATCH] Update .github/workflows/rust.yaml --- .github/workflows/rust.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml index bc3308b..bbade57 100644 --- a/.github/workflows/rust.yaml +++ b/.github/workflows/rust.yaml @@ -35,4 +35,13 @@ jobs: command: test args: --release # Or --debug, depending on the env.PROFILE -] \ No newline at end of file + - name: Clippy check (optional) + # Uncomment to enable Clippy linting + # uses: actions-rs/clippy-check@v1 + # with: + # token: ${{ secrets.GITHUB_TOKEN }} + # args: -- -D warnings + + - name: Generate code coverage (optional) + # Uncomment to generate code coverage reports (requires additional setup) + # uses: codecov/codecov-action@v3 \ No newline at end of file