From bf31ab720919efc01160d6d01db6e51f409dc697 Mon Sep 17 00:00:00 2001 From: Simon Goller Date: Tue, 25 Jun 2024 13:36:34 +0200 Subject: [PATCH] CI checks formatting and OIDC build --- .github/workflows/rust.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 09c40d1..7ea65f6 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -17,7 +17,11 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Build + - name: Formatting + run: cargo fmt --all -- --check + - name: Build local version run: cargo build --verbose + - name: Build OIDC version + run: cargo build --verbose --no-default-features --features oidc - name: Run tests run: cargo test --verbose