Fix panic when payload is nil #3858
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: Unit tests | |
on: | |
pull_request: | |
paths-ignore: | |
- 'documentation/**' | |
push: | |
branches: | |
- develop | |
jobs: | |
unit-tests: | |
name: Unit tests | |
runs-on: self-hosted | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
cache: false | |
- name: Print Go version | |
run: go version | |
- name: Run Tests | |
run: go test ./... -tags rocksdb -count=1 -timeout 20m | |
unit-tests-race: | |
name: Unit tests -race | |
runs-on: self-hosted | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
cache: false | |
- name: Print Go version | |
run: go version | |
- name: Run Tests with -race | |
run: go test ./... -tags rocksdb -count=1 -race -short -timeout 30m |