Skip to content

Commit faf512d

Browse files
committed
chore: ci: add a workflow for E2EI tests
1 parent 303a20b commit faf512d

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/test-e2ei.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)