Added 5 sec delay in polling loop of upload status and SAST status api's #146
This file contains hidden or 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: Test | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: test | |
run: make test_coverage | |
- uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage.txt | |
verbose: true |