feat [DEVX-2314] Update kube bench to fix the build git workflow #81
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: Build | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "*.md" | |
- "LICENSE" | |
- "NOTICE" | |
pull_request: | |
paths-ignore: | |
- "*.md" | |
- "LICENSE" | |
- "NOTICE" | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Go | |
uses: actions/[email protected] | |
with: | |
go-version: 1.23.6 | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: yaml-lint | |
uses: ibiqlik/action-yamllint@v3 | |
- name: Run unit tests | |
run: make tests | |
- name: Upload code coverage | |
uses: codecov/[email protected] | |
with: | |
file: ./coverage.txt | |
- name: Run integration tests | |
run: make integration-tests | |
- name: Dry-run release snapshot | |
uses: goreleaser/[email protected] | |
with: | |
version: '~> v2' | |
args: release --snapshot --skip publish --clean |