all repos — emoji @ 1c3147767074998ee641f4e6e8b5657c14c6e190

A minimalistic emoji package for Go (golang)

Create go.yml
Enes Çakır enes@cakir.web.tr
Tue, 18 Feb 2020 00:20:10 +0300
commit

1c3147767074998ee641f4e6e8b5657c14c6e190

parent

bd0386032f9428b36c5133b02f0568dac9639aac

1 files changed, 20 insertions(+), 0 deletions(-)

jump to
A .github/workflows/go.yml

@@ -0,0 +1,20 @@

+name: Go +on: [push, pull_request] +jobs: + test-build: + name: Test & 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 mod tidy -v + go test -race ./... + - name: Build + run: go build ./...