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