From 641f2d0dab48e24ee2dd993379577235aeb59e63 Mon Sep 17 00:00:00 2001 From: notV4l Date: Tue, 15 Oct 2024 18:04:03 +0200 Subject: [PATCH] update CI --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8dc0453..edf45af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Format + working-directory: ./server run: cargo fmt --all -- --check clippy: @@ -15,8 +16,10 @@ jobs: steps: - uses: actions/checkout@v4 - name: Clippy + working-directory: ./server run: cargo clippy --fix - name: Check for diff + working-directory: ./server run: git diff --exit-code build: @@ -34,4 +37,5 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Run tests + working-directory: ./server run: cargo test --workspace --verbose