fix staticprop v10 struct size #11
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 and coverage | |
| on: | |
| push: | |
| branches: | |
| - "*" | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| name: Run tests | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 2 | |
| - name: Install Go 1.24.0 | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: "1.24.0" | |
| - name: Run coverage | |
| run: go test ./... -race -coverpkg=./libs/... -coverprofile=coverage.out -covermode=atomic |