Skip to content

[-] updated go.mod to use 1.22 instead of 1.19 as it is out of suppor… #13

[-] updated go.mod to use 1.22 instead of 1.19 as it is out of suppor…

[-] updated go.mod to use 1.22 instead of 1.19 as it is out of suppor… #13

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
testold:
name: "Test with Go 1.22"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go 1.22
uses: actions/setup-go@v3
with:
go-version: 1.22
- name: Test
run: go test -coverprofile=coverage.txt -covermode=atomic $(go list ./... | grep -v /cmd)
testlatest:
name: "Test with default latest Go"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go latest
uses: actions/setup-go@v3
- name: Test
run: go test -coverprofile=coverage.txt -covermode=atomic $(go list ./... | grep -v /cmd)