Skip to content

Merge pull request #96 from anthonynsimon/dependabot/go_modules/golan… #8

Merge pull request #96 from anthonynsimon/dependabot/go_modules/golan…

Merge pull request #96 from anthonynsimon/dependabot/go_modules/golan… #8

Workflow file for this run

name: Check
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
check_build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-20.04 ]
go-version:
- '1.11'
- '1.12'
- '1.13'
- '1.14'
- '1.15'
- '1.16'
- '1.17'
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Test codebase
run: make test