Compare commits

...

2 Commits

Author SHA1 Message Date
e1137fb8ef add main function
All checks were successful
Go / build (push) Successful in 1m33s
2024-11-14 09:24:47 +01:00
Robin Bärtschi
da7e1e87f2
Create go.yml 2024-11-14 09:23:17 +01:00
2 changed files with 30 additions and 0 deletions

28
.github/workflows/go.yml vendored Normal file
View File

@ -0,0 +1,28 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...

View File

@ -1 +1,3 @@
package main
func main() {}