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