Skip to content

Merge pull request #30 from inaciogu/inaciogu-patch-2 #80

Merge pull request #30 from inaciogu/inaciogu-patch-2

Merge pull request #30 from inaciogu/inaciogu-patch-2 #80

Workflow file for this run

name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.20', '1.21.x']
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go get ./...
- name: Build
run: go build -v ./...
- name: Run tests
run: go test -v ./...