This commit is contained in:
parent
9c58b4a7d5
commit
511b798008
1 changed files with 15 additions and 0 deletions
15
.gitea/workflows/build.yml
Normal file
15
.gitea/workflows/build.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
name: Build
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
quality:
|
||||||
|
runs-on: alpine-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
apk add go make
|
||||||
|
make build
|
Loading…
Reference in a new issue