Add priority field to regional network firewall policy association #17098
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: GoTest | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| name: Build & Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
| - name: Set up Go | |
| uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.31.0 | |
| with: | |
| go-version-file: "go.mod" | |
| - name: Get dependencies | |
| run: | | |
| go mod download | |
| - name: Build and Lint | |
| run: make build | |
| - name: Test | |
| run: | | |
| make docscheck | |
| make testnolint |