Skip to content

chore: update dependencies in README #314

chore: update dependencies in README

chore: update dependencies in README #314

Workflow file for this run

name: Test
# testing should occur on push or merge to master branch
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev
jobs:
test:
strategy:
matrix:
# run the tests with the following version of Go
go-version: [1.18.x, 1.19.x, 1.20.x]
# run the tests on the following operating systems
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
# install Go and check it out to
# the container for running the tests
- name: Install go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout Code
uses: actions/checkout@v2
# run the tests from the following project path
- name: Test
run: go test ./...