Merge pull request #18 from carloseabade/feat/keep-spaces-as-they-are #9
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] | |
| permissions: | |
| contents: write | |
| jobs: | |
| test: | |
| name: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: setup go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version-file: go.mod | |
| - name: format check | |
| run: gofmt -s -l . | |
| - name: static check | |
| run: go vet ./... | |
| - name: generate test coverage | |
| run: go test ./... -coverprofile=./cover.out -covermode=atomic | |
| - name: check test coverage | |
| id: coverage | |
| uses: vladopajic/go-test-coverage@v2 | |
| with: | |
| profile: cover.out | |
| #local-prefix: github.com/org/project | |
| threshold-file: 80 | |
| threshold-package: 80 | |
| threshold-total: 95 | |
| - name: make coverage badge | |
| uses: action-badges/core@0.2.2 | |
| if: contains(fromJSON('["refs/heads/master", "refs/heads/main"]'), github.ref) | |
| with: | |
| label: coverage | |
| message: ${{ steps.coverage.outputs.badge-text }} | |
| message-color: ${{ steps.coverage.outputs.badge-color }} | |
| file-name: coverage.svg | |
| badge-branch: badges | |
| github-token: "${{ secrets.GITHUB_TOKEN }}" |