From eda91ee95e4f74d5a262029f605c38a48fad8941 Mon Sep 17 00:00:00 2001 From: tqcq <99722391+tqcq@users.noreply.github.com> Date: Wed, 30 Jul 2025 17:32:21 +0800 Subject: [PATCH] init repo. --- .gitea/workflows/build.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..28b0735 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,12 @@ +name: test +on: [push] + +jobs: + container-job: + runs-on: ubuntu-22.04 + container: + image: busybox + options: --cpus 1 + steps: + - name: Check + run: (ls /.dockerenv && echo Found dockerenv) || (echo No dockerenv)