Globals to compiler
This commit is contained in:
22
.gitea/workflows/ build.yml
Normal file
22
.gitea/workflows/ build.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
---
|
||||
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
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.21'
|
||||
- name: Build Binary
|
||||
run: make build
|
||||
Reference in New Issue
Block a user