From b10da0e3e16314fed9486c08300bae7fb83d7dd5 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Tue, 5 Dec 2023 19:16:56 +0200 Subject: [PATCH] Allow CI failure for stable authentik version This provider is usually targeting the next version of authentik, so CI is allowed to fail on the current version --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c2a96ef..a73c5fc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,13 +28,17 @@ jobs: strategy: fail-fast: false matrix: + allow_failure: [false] terraform: - "beta" - "rc" - "latest" authentik_version: - - "stable" - "beta" + include: + - authentik_version: "stable" + terraform: latest + allow_failure: true steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v4