setting pipeline
All checks were successful
Build Authoring Service / build (push) Successful in 8s

This commit is contained in:
2026-05-13 15:55:26 +01:00
parent d4e441b596
commit 7cb147b381
4 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
name: Build Authoring Service
on:
push:
branches:
- main
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
build:
runs-on: site-build
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Build site
run: make

0
.gitignore vendored Normal file → Executable file
View File

2
Makefile Normal file → Executable file
View File

@@ -16,6 +16,8 @@ SYSTEMD_RUNTIME_DIR ?= /run/user/$(USER_ID)
SYSTEMCTL_USER := env XDG_RUNTIME_DIR=$(SYSTEMD_RUNTIME_DIR) systemctl --user
JOURNALCTL_USER := env XDG_RUNTIME_DIR=$(SYSTEMD_RUNTIME_DIR) journalctl --user
all: author-restart
test: $(VENV)
$(PY) -m unittest discover -s tests -p 'test_authoring_server.py' -v

0
README.md Normal file → Executable file
View File