fix(parameters): fixed null string convertion when listing parameters… #146
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: | |
pull_request: | |
branches: | |
- master | |
- "*_release" | |
paths: | |
- '**/*.go' | |
push: | |
branches: | |
- master | |
- "*_release" | |
paths: | |
- '**/*.go' | |
env: | |
GO_VERSION: "1.22" | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: generate bindata | |
run: make dashboard-bindata-gen cli-bindata-gen dashboard-doc-gen | |
- name: go mod vendor | |
run: go mod vendor | |
- name: install tools | |
run: make tools | |
- name: test webhooks | |
run: make test-webhooks | |