Skip to content

Merge pull request #29 from fako1024/28-mock-piping-may-cause-stray-p… #133

Merge pull request #29 from fako1024/28-mock-piping-may-cause-stray-p…

Merge pull request #29 from fako1024/28-mock-piping-may-cause-stray-p… #133

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
- push
- pull_request
jobs:
build-linux:
name: Build on Linux
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ^1.18
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Build for 386
run: GOOS=linux GOARCH=386 go build -v -x ./...
- name: Build for ARM
run: GOOS=linux GOARCH=arm go build -v -x ./...
- name: Build for ARM64
run: GOOS=linux GOARCH=arm64 go build -v -x ./...
- name: Build for AMD64
run: GOOS=linux GOARCH=amd64 go build -v -x ./...
- name: Build
run: go build -v -x ./...
- name: Test
run: go test -v ./...