v2: fix IAM role bug where empty map value for labels is converted to… #723
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: CI | |
on: | |
push: | |
branches: | |
- '**' | |
paths-ignore: | |
- '**.md' | |
- 'version/*' | |
tags-ignore: | |
- 'v**' # Don't run CI tests on release tags | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
env: | |
GOLANGCI_LINT_CONFIG: ".golangci.yml" | |
steps: | |
- uses: actions/checkout@v3 | |
- run: git submodule update --init --recursive go.mk | |
- uses: ./go.mk/.github/actions/setup | |
- uses: ./go.mk/.github/actions/pre-check | |
- run: make test-verbose |