Use channel of pointers to objects for consistency #1853
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: CI | |
on: | |
push: | |
branches: | |
- master | |
- 'v**' | |
- 'feature/**' | |
pull_request: | |
branches: | |
- master | |
- 'v**' | |
- 'feature/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' | |
- name: Run tests | |
run: | | |
make ci | |
make check-tidy | |
make check-headers | |
- name: Upload coverage report | |
uses: codecov/codecov-action@v4 | |
with: | |
file: ./coverage.txt | |
flags: unittests |