Skip to content

Merge pull request #101 from johnnybravo-xyz/master #166

Merge pull request #101 from johnnybravo-xyz/master

Merge pull request #101 from johnnybravo-xyz/master #166

Workflow file for this run

name: Go Test
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
test:
## We want to define a strategy for our job
strategy:
## this will contain a matrix of all of the combinations
## we wish to test again:
matrix:
go-version: [1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
## Defines the platform for each test run
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
- name: Run Go Test
run: go test -v ./...