diff options
author | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2019-12-08 13:48:46 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-08 13:48:46 +0300 |
commit | 09339ddae33acc8ceaaf84ef8154da92d76985af (patch) | |
tree | e20837ec21086ff1d8f4eff38e66b69b3401c83f | |
parent | 8269e42b6b4cf794b75d85d0f38a570813338cab (diff) |
Create go.yml
-rw-r--r-- | .github/workflows/go.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..5cd4f39 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,20 @@ +name: Go +on: [push] +jobs: + + build: + name: Build + runs-on: ubuntu-latest + steps: + + - name: Set up Go 1.13 + uses: actions/setup-go@v1 + with: + go-version: 1.13 + id: go + + - name: Check out code into the Go module directory + uses: actions/checkout@v1 + + - name: Test + run: go test . |