Add Gitea Actions CI workflow

Runs docker build . on push to main and pull requests.
This commit is contained in:
clawbot 2026-03-02 02:09:18 -08:00
parent e6d75ed57f
commit a77096326a

View File

@ -0,0 +1,14 @@
name: check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: docker build .