Add CI workflow and backend repo standard files
Some checks failed
check / check (push) Failing after 26s

Add .gitea/workflows/check.yml that builds both the root and
backend Docker images on push. Add LICENSE and README.md to the
backend subproject to match repo standards.
This commit is contained in:
2026-02-27 12:18:35 +07:00
parent b57afeddbd
commit 4ad2573532
3 changed files with 101 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
name: check
on: [push]
jobs:
check:
runs-on: ubuntu-latest
steps:
# actions/checkout v4.2.2, 2026-02-22
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- run: docker build .
- run: docker build backend/