Skip to content

BE-6017-bump-x/text-and-x/text-versions-to-fix-high-severity-CVEs #63

BE-6017-bump-x/text-and-x/text-versions-to-fix-high-severity-CVEs

BE-6017-bump-x/text-and-x/text-versions-to-fix-high-severity-CVEs #63

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build
# strategy:
# matrix:
# go-version: [1.13.x]
# platform: [, macos-latest, windows-latest]
# runs-on: ${{ matrix.platform }}
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.17
uses: actions/setup-go@v1
with:
go-version: 1.17.5
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -race -v ./...