Skip to content

Merge pull request #16 from humans-group/BE-6017-bump-x/text-and-x/te… #76

Merge pull request #16 from humans-group/BE-6017-bump-x/text-and-x/te…

Merge pull request #16 from humans-group/BE-6017-bump-x/text-and-x/te… #76

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.19
uses: actions/setup-go@v1
with:
go-version: 1.19
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 ./...