add file to test CI

This commit is contained in:
Florian Forster 2019-11-15 14:25:09 +01:00
parent 27a9c8fdcb
commit 931956f95a
No known key found for this signature in database
GPG key ID: B03784B4B09FB794
2 changed files with 6 additions and 1 deletions

View file

@ -13,4 +13,4 @@ jobs:
uses: actions/setup-go@v1 uses: actions/setup-go@v1
with: with:
go-version: ${{ matrix.go }} go-version: ${{ matrix.go }}
- run: echo "i am groot" - run: go run main.go

5
main.go Normal file
View file

@ -0,0 +1,5 @@
package main
import "fmt"
func main() {
fmt.Println("hello world")
}