build(deps): bump github.com/stretchr/testify from 1.9.0 to 1.10.0 #38
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: Go | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
ci: | |
name: Static analysis and testing | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.21" | |
cache: false | |
- name: Check that all packages are compiling | |
run: make build | |
- name: Run all test | |
run: make test | |
- name: Installing tools | |
run: make tools | |
- name: Run all checks | |
run: make check | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 |