fork from prologic/pages-server
This commit is contained in:
parent
9d86fd33c6
commit
839a429820
33 changed files with 865 additions and 2482 deletions
21
.gitea/workflows/build.yml
Normal file
21
.gitea/workflows/build.yml
Normal file
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v3
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version: '>=1.18.0'
|
||||
- name: Build Binary
|
||||
run: make build
|
Loading…
Add table
Add a link
Reference in a new issue