Skip to content

Adding the missing parameters for creating the next available Subnet in a Address block #11

Adding the missing parameters for creating the next available Subnet in a Address block

Adding the missing parameters for creating the next available Subnet in a Address block #11

Workflow file for this run

name: tests
on:
pull_request:
paths-ignore:
- 'README.md'
push:
paths-ignore:
- 'README.md'
jobs:
test:
strategy:
matrix:
go-version: [1.16.x, 1.17.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v2.1.3
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2.4.0
- name: Get dependencies
run: go mod download
- name: Run unit tests
run: go test -v -cover ./...