Skip to content

fix: handle netbox migration to disk set in MB #1809

fix: handle netbox migration to disk set in MB

fix: handle netbox migration to disk set in MB #1809

Workflow file for this run

---
name: ci-testing
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: test
run: make test
testacc:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
netbox-version:
- v4.1.0
- v4.1.1
- v4.1.2
- v4.1.3
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: testacc
run: make -e testacc
env:
NETBOX_VERSION: ${{ matrix.netbox-version }}