chore: bump github.com/spf13/cobra from 1.8.0 to 1.8.1 #2731
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
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
cache: true | |
- name: Install dependencies | |
run: | | |
make setup | |
- name: lint | |
run: | | |
make lint-ci | |
- name: Run tests | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN}} | |
run: | | |
make test | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
files: ./coverage.txt | |
flags: unittests | |
name: aws-oidc | |
path_to_write_report: ./codecov_report.txt | |
verbose: true |