Skip to content

Bump github.com/onsi/gomega from 1.17.0 to 1.30.0 (#68) #20

Bump github.com/onsi/gomega from 1.17.0 to 1.30.0 (#68)

Bump github.com/onsi/gomega from 1.17.0 to 1.30.0 (#68) #20

Workflow file for this run

name: Go
on:
push:
branches: [ develop ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get Go version from go.mod
run: |
go_version=$(cat go.mod | grep "^go" | cut -d ' ' -f 2)
echo "go_version=${go_version}" >> $GITHUB_ENV
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.go_version }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...