Skip to content

Bump github.com/packethost/packngo from 0.29.0 to 0.30.0 #291

Bump github.com/packethost/packngo from 0.29.0 to 0.30.0

Bump github.com/packethost/packngo from 0.29.0 to 0.30.0 #291

Workflow file for this run

name: Go Tests
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Set up Go
uses: actions/[email protected]
with:
go-version: '1.19'
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Unit tests
run: go test -v -cover -parallel 4 $(go list ./... | grep -v /e2e)