Testing Gitea actions
This commit is contained in:
parent
9d1c501b43
commit
01da39748d
18
.gitea/workflows/build.yml
Normal file
18
.gitea/workflows/build.yml
Normal file
@ -0,0 +1,18 @@
|
||||
name: Build
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
gobuild:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v3
|
||||
with:
|
||||
go-version: '1.21.x'
|
||||
- name: Install dependencies
|
||||
run: go get .
|
||||
- name: Build
|
||||
run: go build -v ./*/*.go
|
||||
Loading…
x
Reference in New Issue
Block a user