removed integration test from examples/basic

Integrations tests will be re-implemented on the main-crate.
See #20 and #35.
This commit is contained in:
Paul Zinselmeyer 2025-11-21 13:47:37 +01:00
parent c3f4b7e514
commit 00136320a9
Signed by: pfzetto
SSH key fingerprint: SHA256:BOdea0+zY02mYo29j2zzK6uVpcc3Gkp4w6C7YrHbN8A
7 changed files with 94 additions and 390 deletions

View file

@ -10,8 +10,8 @@ env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: axum-oidc - latest
test:
name: axum-oidc
runs-on: ubuntu-latest
strategy:
matrix:
@ -24,13 +24,17 @@ jobs:
- run: cargo build --verbose --release
- run: cargo test --verbose --release
build_and_test_examples:
name: axum-oidc - examples
test_basic_example:
name: axum-oidc - basic
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- nightly
steps:
- uses: actions/checkout@v3
- run: sudo apt install chromium-browser -y
- run: rustup update stable && rustup default stable
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose --release
working-directory: ./examples/basic
- run: cargo test --verbose --release