From cd69a712e1b8cda47e350cb5fbfc3822384b846f Mon Sep 17 00:00:00 2001 From: Bad Date: Sat, 30 Nov 2024 22:17:33 +0000 Subject: [PATCH] Add .gitea/workflows/ci.yml --- .gitea/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 00000000..3fa8fadd --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,21 @@ +name: nogui build +on: + push: + branches: + - master +jobs: + try: + name: try & test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Setup GO + uses: actions/setup-go@v5 + + - name: Install build-essentials + run: apt install build-essential + + - name: build nogui + run: make build-nogui \ No newline at end of file