From 07f314be7c94dc12d85ee118806d3300c4b6f008 Mon Sep 17 00:00:00 2001 From: LordEidi Date: Fri, 16 Aug 2019 16:18:23 +0200 Subject: [PATCH] initial test of github action --- .github/workflows/build_gohjasmin.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/build_gohjasmin.yml diff --git a/.github/workflows/build_gohjasmin.yml b/.github/workflows/build_gohjasmin.yml new file mode 100644 index 0000000..ba22c8b --- /dev/null +++ b/.github/workflows/build_gohjasmin.yml @@ -0,0 +1,24 @@ +name: Go +on: [push] +jobs: + + build: + name: Build + runs-on: ubuntu-latest + steps: + + - name: Set up Go 1.12 + uses: actions/setup-go@v1 + with: + go-version: 1.12 + id: go + + - name: Check out code into the Go module directory + uses: actions/checkout@v1 + + - name: Get dependencies + run: | + go get abc + + - name: Build + run: go build -v .