We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 303a20b commit faf512dCopy full SHA for faf512d
.github/workflows/test-e2ei.yml
@@ -0,0 +1,36 @@
1
+name: test-e2ei
2
+
3
+concurrency:
4
+ group: "${{ github.workflow }}-${{ github.ref }}"
5
+ cancel-in-progress: true
6
7
+on:
8
+ push:
9
+ tags:
10
+ - '*'
11
+ pull_request:
12
13
+env:
14
+ RELEASE: 1
15
+ RUST_BACKTRACE: 1
16
+ CARGO_TERM_COLOR: always
17
+ CARGO_NET_GIT_FETCH_WITH_CLI: true
18
+ CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
19
20
+jobs:
21
+ test-e2ei:
22
+ runs-on: ubuntu-latest
23
+ strategy:
24
+ fail-fast: false
25
+ matrix:
26
+ idp:
27
+ - authelia
28
+ - keycloak
29
+ steps:
30
+ - uses: actions/checkout@v6
31
+ - uses: actions-rust-lang/setup-rust-toolchain@v1
32
+ with:
33
+ rustflags: ''
34
+ toolchain: 'stable'
35
+ - uses: taiki-e/install-action@nextest
36
+ - run: TEST_IDP=${{ matrix.idp }} sh scripts/run-e2ei-tests.sh
0 commit comments