feat: mveLabel field for MVE and Max VXC Speed for port, mcr, and mve #309
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: go-tests | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
jobs: | |
unit-test: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: Run Tests | |
run: go test -v ./... | |
# integration-test: | |
# name: Integration Tests | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: actions/setup-go@v4 | |
# with: | |
# go-version: '1.22' | |
# - name: Run Tests | |
# run: go test -timeout=30m -v -integration ./... | |
# env: | |
# MEGAPORT_ACCESS_KEY: ${{ secrets.MEGAPORT_ACCESS_KEY }} | |
# MEGAPORT_SECRET_KEY: ${{ secrets.MEGAPORT_SECRET_KEY }} |