diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1cdfb7a4f..8d1217678 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,6 +23,8 @@ jobs: run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - name: Build run: cargo build --features test-vendored-openssl + - name: Verify no pending changes invoked by building + run: git diff --exit-code - name: Run tests run: cargo test --features test-vendored-openssl --verbose - name: Run integration tests @@ -45,6 +47,8 @@ jobs: run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - name: Build run: cargo build --features test-vendored-openssl + - name: Verify no pending changes invoked by building + run: git diff --exit-code - name: Run tests run: cargo test --features test-vendored-openssl --verbose