From 4b5cd25293fe04b3f99144b0bbc692c9f5b65e4b Mon Sep 17 00:00:00 2001 From: Ryan Date: Mon, 2 Sep 2024 00:12:44 +0200 Subject: [PATCH] Add empty Gitea workflow --- .gitea/workflows/on-push.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitea/workflows/on-push.yaml diff --git a/.gitea/workflows/on-push.yaml b/.gitea/workflows/on-push.yaml new file mode 100644 index 0000000..cb616ba --- /dev/null +++ b/.gitea/workflows/on-push.yaml @@ -0,0 +1,10 @@ +name: on-push +on: [push] + +jobs: + build-and-test: + runs-on: linux + container: code.helloryan.se/infra/buildenv/cxx-amd64-fedora-40:latest + steps: + - name: Check out repository code + uses: actions/checkout@v4