Bump codecov/codecov-action from 2 to 5 #69
Workflow file for this run
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: test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
- uses: actions/setup-go@v3 | |
- run: rake build | |
- run: rake lint | |
- run: rake format && git diff --exit-code | |
- run: rake unit_test | |
- run: rake command_test | |
- run: rake data_race_test | |
- uses: codecov/codecov-action@v5 | |
with: | |
fail_ci_if_error: true | |
- run: rake bench | |
- run: rake install | |
spell_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: streetsidesoftware/cspell-action@main | |
with: | |
files: "**/*.{go,md,rb}" |