Skip to content

Merge branch 'release/0.7.1' #15

Merge branch 'release/0.7.1'

Merge branch 'release/0.7.1' #15

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
go-version: [ 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x ]
name: Tests - Go ${{ matrix.go-version }}
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Run the tests
run: go test ./...