Skip to content

Merge pull request #17 from lithammer/dependabot/github_actions/actio… #24

Merge pull request #17 from lithammer/dependabot/github_actions/actio…

Merge pull request #17 from lithammer/dependabot/github_actions/actio… #24

Workflow file for this run

name: Go
on: [push]
jobs:
test:
strategy:
matrix:
platform:
- macos-latest
- ubuntu-latest
- windows-latest
go-version:
- '1.15'
- '1.16'
runs-on: ${{ matrix.platform }}
steps:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...