From 931956f95a6d2fa717e67abc7b3bd586c003ea96 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Fri, 15 Nov 2019 14:25:09 +0100 Subject: [PATCH] add file to test CI --- .github/workflows/test.yml | 2 +- main.go | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 main.go diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 772ffab..679abd5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,4 +13,4 @@ jobs: uses: actions/setup-go@v1 with: go-version: ${{ matrix.go }} - - run: echo "i am groot" \ No newline at end of file + - run: go run main.go \ No newline at end of file diff --git a/main.go b/main.go new file mode 100644 index 0000000..4734979 --- /dev/null +++ b/main.go @@ -0,0 +1,5 @@ +package main +import "fmt" +func main() { + fmt.Println("hello world") +} \ No newline at end of file