Skip to content

various updates (May 2023) #62

various updates (May 2023)

various updates (May 2023) #62

Workflow file for this run

name: Tests
on: [push]
jobs:
test:
name: Test with Go ${{ matrix.go }}
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.13', '1.14', '1.15', '1.16' ]
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
run: go test -v ./...