From cb8be234ab10f45e277a866b7e14998f00ea5416 Mon Sep 17 00:00:00 2001 From: BtbN Date: Thu, 23 Jan 2025 01:31:22 +0100 Subject: [PATCH] Add test action --- .forgejo/workflows/test.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .forgejo/workflows/test.yml diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml new file mode 100644 index 0000000000..83ef87f5a9 --- /dev/null +++ b/.forgejo/workflows/test.yml @@ -0,0 +1,13 @@ +on: + push: + branches: + - master + pull_requests: + +jobs: + run_fate: + runs-on: linux-amd64 + steps: + - uses: actions/checkout@v4 + - name: Build + run: ./configure && make -j$(nproc)