From d6ee106682125bea33b569c4058610b6ac4e4cd7 Mon Sep 17 00:00:00 2001 From: PoliEcho Date: Sat, 12 Jul 2025 20:56:47 +0200 Subject: [PATCH] add build test --- .gitea/workflows/build_test.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/build_test.yaml diff --git a/.gitea/workflows/build_test.yaml b/.gitea/workflows/build_test.yaml new file mode 100644 index 0000000..b443cf9 --- /dev/null +++ b/.gitea/workflows/build_test.yaml @@ -0,0 +1,15 @@ +name: build_test +on: [push] + +jobs: + build: + runs-on: arch + steps: + - name: get dependencies + run: pacman -Sy nodejs make nasm--needed --noconfirm + + - name: Checkout code + uses: actions/checkout@v4 + + - name: Build + run: make -j$(nproc)