blob: edb719680a33f8566552dc55824823f137bc115b [file] [log] [blame]
name: Golang Build
on:
workflow_call:
jobs:
build:
name: "${{ matrix.os }}, go-${{ matrix.go }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-11, windows-2022]
go: [1.17]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Golang ${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Build
working-directory: ./golang
run: go build && go test ./...