Skip to content

fix(deps): update module golang.org/x/text to v0.13.0 #976

fix(deps): update module golang.org/x/text to v0.13.0

fix(deps): update module golang.org/x/text to v0.13.0 #976

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Go Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.14
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Install make (Windows)
if: runner.os == 'Windows'
run: choco install -y make mingw
- name: Generate Code
run: make client
- name: Check
run: make check
- name: Upload Code Coverage
if: runner.os == 'Linux'
run: bash <(curl -s https://codecov.io/bash)
- name: Docker Build
if: runner.os == 'Linux'
run: make docker && make test-integration && make clean-integration