Skip to content

Merge pull request #9 from nrfta/dependabot/go_modules/github.com/vek… #25

Merge pull request #9 from nrfta/dependabot/go_modules/github.com/vek…

Merge pull request #9 from nrfta/dependabot/go_modules/github.com/vek… #25

Workflow file for this run

name: CI
on:
push:
branches:
- main
- "v*"
pull_request: {}
jobs:
test:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: [1.18.x, 1.19.x]
os: [ubuntu-latest, macos-latest, windows-latest]
env:
ENV: test
steps:
- uses: actions/checkout@v1
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{matrix.go-version}}
- name: Tests
run: go test -v ./...