mirror of
https://codeberg.org/pfzetto/axum-oidc
synced 2025-12-08 06:05:16 +01:00
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:
parent
c3f4b7e514
commit
00136320a9
7 changed files with 94 additions and 390 deletions
16
.github/workflows/ci.yml
vendored
16
.github/workflows/ci.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue