💚 fix ci lint #2
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: Run tests | ||
on: | ||
push: | ||
jobs: | ||
tests: | ||
name: release linux/amd64 | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
go-version: [ '1.22' ] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Go ${{ matrix.go-version }} | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Start mockserver | ||
run: docker run -v ./tests/mockserver/config:/config -p 1080:1080 -e MOCKSERVER_INITIALIZATION_JSON_PATH=/config/initializerJson.json --name mockserver-go mockserver/mockserver | ||
- name: Setup Go ${{ matrix.go-version }} | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
# You can test your matrix by printing the current Go version | ||
- name: Install dependencies for container | ||
run: cd docker && go get . && cd - | ||
- name: Run tests for container | ||
run: cd docker && go test && cd - | ||
env: | ||
NETBOX_URL: http://localhost:1080 | ||
NETBOX_TOKEN: testing | ||