initial commit
Some checks failed
Build Go Project / build (push) Failing after 1m31s

This commit is contained in:
Thies Mueller
2024-11-04 16:50:20 +01:00
parent f6f6d0f75e
commit 3943edd52a
5 changed files with 182 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
name: Build Go Project
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.23'
- name: Build Go Project
run: |
go build -o errorlog-server main.go
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: errorlog-server
path: errorlog-server