bootstrap go

This commit is contained in:
Dennis Jekubczyk
2021-05-24 11:01:04 +02:00
parent 1ac87f5621
commit b8f9647df5
4 changed files with 24 additions and 0 deletions

15
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
on:
push:
pull_request:
name: test branches or pull requests
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.16"
- run: echo 'TODO'

1
.tool-versions Normal file
View File

@@ -0,0 +1 @@
golang 1.16

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module github.com/jaedle/mirror-to-gitea
go 1.16

5
main.go Normal file
View File

@@ -0,0 +1,5 @@
package main
func main() {
println("Hello World")
}