Skip to content

updating to go 1.21, upgrading dependencies (#81) #138

updating to go 1.21, upgrading dependencies (#81)

updating to go 1.21, upgrading dependencies (#81) #138

Workflow file for this run

name: "Go test"
on:
push:
branches: [main]
pull_request:
# The branches below must be a subset of the branches above
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.21"]
name: Go ${{ matrix.go }} sample
steps:
- name: Checkout Source
uses: actions/checkout@v3
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- run: go test -v ./...