From ee0c06d8546fe57b83e525de85f9ca243adb33c4 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Wed, 14 Aug 2019 11:13:36 +0300 Subject: [PATCH] Iris part of github actions beta program: workflow Former-commit-id: 2a0af2f541b37b7b87b0b686fa27a8ab04e4682e --- .github/workflows/go.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 00000000..ef0877a4 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,32 @@ +name: Go +on: + push: + branches: + - master +jobs: + + build: + name: Build + runs-on: + - ubuntu-latest + - macOS-latest + - windows-latest + steps: + + - name: Set up Go 1.12 + uses: actions/setup-go@v1 + with: + version: 1.12 + id: go + + - name: Check out code into the Go module directory + use: actions/checkout@master + path: ${{ go.module-path }} + + - name: Get dependencies + working-directory: ${{ go.module-path }} + run: | + go get -v -t -d ./... + - name: Build + working-directory: ${{ go.module-path }} + run: go build -v .