fix: invalid property in network add_subnet request body #1727
Workflow file for this run
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: actions/setup-python@v6 | |
with: | |
python-version: 3.x | |
- uses: actions/setup-go@v6 | |
with: | |
go-version-file: go.mod | |
- uses: pre-commit/[email protected] | |
test: | |
strategy: | |
matrix: | |
go-version: | |
- "1.24" | |
- "1.25" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: actions/setup-go@v6 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- run: go test -coverprofile=coverage.txt -v -race ./... | |
- uses: codecov/codecov-action@v5 | |
if: > | |
!startsWith(github.head_ref, 'renovate/') && | |
!startsWith(github.head_ref, 'releaser-pleaser--') | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |