Merge pull request #1667 from borzovplus/monoforum-support #3118
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: Coverage | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.24.x' | |
| cache: false | |
| - name: Get Go environment | |
| id: go-env | |
| run: | | |
| echo "::set-output name=cache::$(go env GOCACHE)" | |
| echo "::set-output name=modcache::$(go env GOMODCACHE)" | |
| - name: Set up cache | |
| uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ${{ steps.go-env.outputs.cache }} | |
| ${{ steps.go-env.outputs.modcache }} | |
| key: test-${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}-${{ hashFiles('**/go.mod') }} | |
| restore-keys: | | |
| test-${{ runner.os }}-go- | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Run tests with coverage | |
| run: make coverage | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: coverage | |
| path: profile.out | |
| if-no-files-found: error | |
| retention-days: 1 | |
| upload: | |
| runs-on: ubuntu-latest | |
| needs: | |
| - test | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Download artifact | |
| uses: actions/download-artifact@v7 | |
| with: | |
| name: coverage | |
| - name: Send coverage | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| files: profile.out | |
| fail_ci_if_error: true |