Skip to content

Fix site.asns and interface.tagged_vlans schema specs #143

Fix site.asns and interface.tagged_vlans schema specs

Fix site.asns and interface.tagged_vlans schema specs #143

Workflow file for this run

---
name: main
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go: ["1.21", "1.20"]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Go installation
uses: actions/[email protected]
with:
go-version: ${{ matrix.go }}
- name: Go dependencies installation
run: go get -d ./...
- name: Build
run: go build ./...
- name: Test
run: go test ./...
- name: Vet
run: go vet ./...