AV-221733 update publicIP on pool member update #165
Workflow file for this run
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-CI | |
on: | |
# Triggers the workflow on pull request events for the master and release-* branches | |
pull_request: | |
branches: | |
- master | |
- release-* | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
golangci-lint: | |
name: Golangci-lint | |
strategy: | |
matrix: | |
platform: [ ubuntu-20.04 ] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Set up Go 1.21 | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21 | |
- name: Check-out code | |
uses: actions/checkout@v3 | |
- name: Run golangci-lint | |
run: make golangci |