mirror of
https://github.com/goauthentik/authentik.git
synced 2026-08-30 18:51:39 -07:00
34 lines
853 B
YAML
34 lines
853 B
YAML
---
|
|
name: CI - Main daily
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# Every night at 3am
|
|
- cron: "0 3 * * *"
|
|
pull_request:
|
|
paths:
|
|
# Needs to refer to itself
|
|
- .github/workflows/ci-main-daily.yml
|
|
|
|
jobs:
|
|
test-container:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
version:
|
|
- docs
|
|
- version-2026-5
|
|
- version-2026-8
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v5
|
|
- run: |
|
|
set -euo pipefail
|
|
current="$(pwd)"
|
|
dir="/tmp/authentik/${{ matrix.version }}"
|
|
mkdir -p "${dir}/lifecycle/container"
|
|
cd "${dir}"
|
|
wget "https://${{ matrix.version }}.goauthentik.io/compose.yml" -O "${dir}/lifecycle/container/compose.yml"
|
|
"${current}/scripts/test_docker.sh"
|