feat: embed saml config into generate #874
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Image CI | |
on: [push, pull_request] | |
jobs: | |
read-only: | |
runs-on: ubuntu-24.04 | |
env: | |
# Use short project name, otherwise inspect output is messy | |
COMPOSE_PROJECT_NAME: wl | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test content | |
run: ./test-content | |
- name: Generate configuration | |
run: ./test-generate 8080 http saml | |
- name: Startup container | |
run: ./test-boot | |
- name: List Python packages | |
run: ./test-pip | |
- name: Inspect container | |
run: ./test-inspect | |
- name: Check service is running | |
run: ./test-online | |
- name: Check service health status | |
run: ./test-health | |
- name: Run Django Checks | |
run: ./test-checks | |
- name: Verify supervisor | |
run: ./test-supervisor | |
- name: Test admin creation | |
run: ./test-admin | |
- name: Verify SAML certificate | |
run: ./test-saml saml | |
- name: Run commands | |
run: ./test-commands | |
- name: Display logs | |
run: ./test-logs | |
if: always() | |
- name: Shutdown service | |
run: ./test-stop | |
read-write: | |
runs-on: ubuntu-24.04 | |
env: | |
# Use short project name, otherwise inspect output is messy | |
COMPOSE_PROJECT_NAME: wl | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate configuration | |
run: ./test-generate 8080 http read-write | |
- name: Startup container | |
run: ./test-boot | |
- name: List Python packages | |
run: ./test-pip | |
- name: Inspect container | |
run: ./test-inspect | |
- name: Check service is running | |
run: ./test-online | |
- name: Check service health status | |
run: ./test-health | |
- name: Run Django Checks | |
run: ./test-checks | |
- name: Verify supervisor | |
run: ./test-supervisor | |
- name: Test admin creation | |
run: ./test-admin | |
- name: Verify SAML certificate | |
run: ./test-saml read-write | |
- name: Run commands | |
run: ./test-commands | |
- name: Display logs | |
run: ./test-logs | |
if: always() | |
- name: Shutdown service | |
run: ./test-stop |