Merge pull request #130 from intel/dependabot/go_modules/google.golan… #150
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: Verify | |
on: | |
push: | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-and-lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Install golangci-lint | |
run: | | |
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.54.0 | |
- name: Verify | |
run: make verify | |
- name: Test | |
run: make test | |
- name: Codecov report | |
run: bash <(curl -s https://codecov.io/bash) | |
trivy: | |
permissions: | |
contents: read | |
security-events: write | |
uses: "./.github/workflows/common-trivy.yaml" | |
with: | |
upload-to-github-security-tab: true | |
codeql: | |
permissions: | |
contents: read | |
security-events: write | |
uses: "./.github/workflows/common-codeql.yaml" |