Merge pull request #1385 from max107/fix_info_todo #4013
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: Coverage | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "oldstable" | |
cache: false | |
- name: Get Go environment | |
id: go-env | |
run: | | |
echo "cache=$(go env GOCACHE)" >> $GITHUB_ENV | |
echo "modcache=$(go env GOMODCACHE)" >> $GITHUB_ENV | |
- name: Set up cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
${{ env.cache }} | |
${{ env.modcache }} | |
key: coverage-${{ runner.os }}-${{ runner.arch }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
coverage-${{ runner.os }}-${{ runner.arch }}-go- | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests with coverage | |
run: make coverage | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage | |
path: profile.out | |
if-no-files-found: error | |
retention-days: 1 | |
- name: Send coverage | |
uses: codecov/codecov-action@v5 | |
with: | |
file: profile.out |