2023-04-21 10:54:23 +00:00
|
|
|
name: "Setup authentik testing environment"
|
|
|
|
description: "Setup authentik testing environment"
|
2022-04-04 12:02:10 +00:00
|
|
|
|
2023-04-13 12:10:12 +00:00
|
|
|
inputs:
|
|
|
|
postgresql_tag:
|
|
|
|
description: "Optional postgresql image tag"
|
|
|
|
default: "12"
|
|
|
|
|
2022-04-04 12:02:10 +00:00
|
|
|
runs:
|
|
|
|
using: "composite"
|
|
|
|
steps:
|
|
|
|
- name: Install poetry
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
pipx install poetry || true
|
|
|
|
sudo apt update
|
2023-08-02 09:48:30 +00:00
|
|
|
sudo apt install -y libpq-dev openssl libxmlsec1-dev pkg-config gettext
|
2022-04-04 12:02:10 +00:00
|
|
|
- name: Setup python and restore poetry
|
|
|
|
uses: actions/setup-python@v3
|
|
|
|
with:
|
2023-04-21 10:54:23 +00:00
|
|
|
python-version: "3.11"
|
|
|
|
cache: "poetry"
|
2022-04-04 12:02:10 +00:00
|
|
|
- name: Setup node
|
2023-04-21 12:45:41 +00:00
|
|
|
uses: actions/setup-node@v3
|
2022-04-04 12:02:10 +00:00
|
|
|
with:
|
2023-09-20 10:28:47 +00:00
|
|
|
node-version: "20"
|
2023-04-21 10:54:23 +00:00
|
|
|
cache: "npm"
|
2022-04-04 12:02:10 +00:00
|
|
|
cache-dependency-path: web/package-lock.json
|
|
|
|
- name: Setup dependencies
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2023-04-13 12:10:12 +00:00
|
|
|
export PSQL_TAG=${{ inputs.postgresql_tag }}
|
2022-04-04 12:02:10 +00:00
|
|
|
docker-compose -f .github/actions/setup/docker-compose.yml up -d
|
2022-11-13 13:20:55 +00:00
|
|
|
poetry env use python3.11
|
2022-04-04 12:02:10 +00:00
|
|
|
poetry install
|
2022-09-06 22:23:25 +00:00
|
|
|
cd web && npm ci
|
2022-04-04 12:02:10 +00:00
|
|
|
- name: Generate config
|
|
|
|
shell: poetry run python {0}
|
|
|
|
run: |
|
|
|
|
from authentik.lib.generators import generate_id
|
|
|
|
from yaml import safe_dump
|
|
|
|
|
|
|
|
with open("local.env.yml", "w") as _config:
|
|
|
|
safe_dump(
|
|
|
|
{
|
|
|
|
"log_level": "debug",
|
|
|
|
"secret_key": generate_id(),
|
|
|
|
},
|
|
|
|
_config,
|
|
|
|
default_flow_style=False,
|
|
|
|
)
|