Skip to content

Commit

Permalink
ci: run full docker test suite in built image on a schedule (#12863)
Browse files Browse the repository at this point in the history
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
  • Loading branch information
BeryJu authored Jan 29, 2025
1 parent 92d6d74 commit a10e6b7
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci-main-daily.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: authentik-ci-main-daily

on:
workflow_dispatch:
schedule:
# Every night at 3am
- cron: "0 3 * * *"

jobs:
test-container:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version:
- docs
- version-2024-12
- version-2024-10
steps:
- uses: actions/checkout@v4
- run: |
current="$(pwd)"
dir="/tmp/authentik/${{ matrix.version }}"
mkdir -p $dir
cd $dir
wget https://${{ matrix.version }}.goauthentik.io/docker-compose.yml
${current}/scripts/test_docker.sh

0 comments on commit a10e6b7

Please sign in to comment.