Move workflows to .github, add helper actions (#7) #1
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
| # SPDX-FileCopyrightText: 2022-present Intel Corporation | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: coverage | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| jobs: | |
| coverage: | |
| strategy: | |
| matrix: | |
| go-version: [ 1.18.x ] | |
| os: [ ubuntu-latest ] | |
| runs-on: ${{ matrix.os }} | |
| name: Update coverage badge | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token. | |
| fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository. | |
| - name: Setup go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - uses: actions/cache@v2 | |
| with: | |
| path: ~/go/pkg/mod | |
| key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
| restore-keys: | | |
| ${{ runner.os }}-go- | |
| - name: Run Test | |
| run: | | |
| go test -v ./... -covermode=count -coverprofile=coverage.out | |
| go tool cover -func=coverage.out -o=coverage.out | |
| - name: Go Coverage Badge # Pass the `coverage.out` output to this action | |
| uses: tj-actions/[email protected] | |
| with: | |
| filename: coverage.out | |
| - name: Verify Changed files | |
| uses: tj-actions/[email protected] | |
| id: verify-changed-files | |
| with: | |
| files: README.md | |
| - name: Commit changes | |
| if: steps.verify-changed-files.outputs.files_changed == 'true' | |
| run: | | |
| git config --local user.email "[email protected]" | |
| git config --local user.name "GitHub Action" | |
| git add README.md | |
| git commit -m "chore: Updated coverage badge." | |
| - name: Push changes | |
| if: steps.verify-changed-files.outputs.files_changed == 'true' | |
| uses: ad-m/github-push-action@master | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| branch: ${{ github.head_ref }} |