Skip to content

Merge pull request #76 from noborus/dependabot/go_modules/golang.org/… #27

Merge pull request #76 from noborus/dependabot/go_modules/golang.org/…

Merge pull request #76 from noborus/dependabot/go_modules/golang.org/… #27

Workflow file for this run

name: Go
on: [push]
jobs:
build:
strategy:
matrix:
go-version: [ '1.16', '1.17', '1.18' ]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
if: success()
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Run tests
run: make test