all repos — emoji @ 5e63a1afa5f89c2c250ccad27e7abb55a812f3de

A minimalistic emoji package for Go (golang)

.github/workflows/go.yml (view raw)

 1name: build
 2on: [push, pull_request]
 3jobs:
 4  test-build:
 5    name: Test & Build
 6    runs-on: ubuntu-latest
 7    steps:
 8    - name: Set up Go 1.13
 9      uses: actions/setup-go@v1
10      with:
11        go-version: 1.13
12      id: go
13    - name: Check out code into the Go module directory
14      uses: actions/checkout@v1
15    - name: Test
16      run: |
17        go mod tidy -v
18        go test -race ./...        
19    - name: Build
20      run: go build ./...