Merge pull request #214 from mrz1836/dependabot/go_modules/google.gol… #529
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
# See more at: https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions | |
name: run-go-tests | |
env: | |
GO111MODULE: on | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- "*" | |
permissions: | |
contents: read | |
jobs: | |
yamllint: | |
name: Run yaml linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run yaml linter | |
uses: ibiqlik/action-yamllint@v3.1 | |
asknancy: | |
name: Ask Nancy (check dependencies) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Write go list | |
run: go list -json -m all > go.list | |
- name: Ask Nancy | |
uses: sonatype-nexus-community/nancy-github-action@v1.0.3 | |
continue-on-error: true | |
with: | |
nancyCommand: sleuth --loud --exclude-vulnerability sonatype-2021-0853,CVE-2022-32149 | |
test: | |
needs: [yamllint, asknancy] | |
strategy: | |
matrix: | |
go-version: [1.20.x] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Cache code | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/go/pkg/mod # Module download cache | |
~/.cache/go-build # Build cache (Linux) | |
~/Library/Caches/go-build # Build cache (Mac) | |
'%LocalAppData%\go-build' # Build cache (Windows) | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Run linter and tests | |
run: make test-ci | |
- name: Update code coverage | |
uses: codecov/codecov-action@v4.5.0 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: unittests | |
fail_ci_if_error: false # optional (default = false) | |
verbose: true # optional (default = false) |