Add this branch to test #145
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: Unit Tests | |
on: | |
push: | |
branches: [main, add-govulncheck] | |
pull_request: | |
branches: [main] | |
# See https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions | |
permissions: # added using https://github.com/step-security/secure-workflows | |
contents: read | |
env: | |
# Using upload token helps against rate limiting errors. | |
# Cannot define it as secret as we need it accessible from forks. | |
# See https://github.com/codecov/codecov-action/issues/837 | |
CODECOV_TOKEN: f457b710-93af-4191-8678-bcf51281f98c | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@cba0d00b1fc9a034e1e642ea0f1103c282990604 | |
with: | |
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 | |
- uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 | |
with: | |
go-version: 1.20.x | |
- name: Install tools | |
run: make install-ci | |
- name: Run unit tests | |
run: make test-ci | |
- name: Upload coverage to codecov | |
uses: codecov/codecov-action@894ff025c7b54547a9a2a1e9f228beae737ad3c2 | |
with: | |
file: cover.out | |
verbose: true | |
flags: unittests | |
fail_ci_if_error: true | |
token: ${{ env.CODECOV_TOKEN }} | |
- name: Lint | |
run: make lint |