From 70f7905544cfa0b55b572575b6d61c884311269a Mon Sep 17 00:00:00 2001 From: Bokuan Li Date: Tue, 10 Mar 2026 22:51:53 -0400 Subject: [PATCH] Added a compile action. --- .gitea/compile.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitea/compile.yaml diff --git a/.gitea/compile.yaml b/.gitea/compile.yaml new file mode 100644 index 0000000..e9c8b07 --- /dev/null +++ b/.gitea/compile.yaml @@ -0,0 +1,12 @@ +name: Compile Project +run-name: Compile the project using spec. +on: [push] + +jobs: + Compile: + runs-on: ubuntu-latest + steps: + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} + - run: echo "This job's status is ${{ job.status }}." \ No newline at end of file