add bloom filter rocksdb config #1237
Workflow file for this run
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 | |
on: | |
pull_request: | |
branches: [develop] | |
paths-ignore: | |
- "**/README.md" | |
jobs: | |
build: | |
name: Build only | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.24" | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Get dependencies | |
run: | | |
go get -v -t -d ./... | |
- name: Build | |
run: make build | |
- name: Build Tests | |
# use a regex pattern which never meet any function to build all the tests | |
run: go test ./... -run=XXX -tags=tests_build_only | |
test-short: | |
name: Test (short) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.24" | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Get dependencies | |
run: | | |
go get -v -t -d ./... | |
# Here used to be a make build step, but we separated it into another job | |
- name: Test | |
run: make test-short | |
golangci: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.24" | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Run global scope golangci-lint | |
uses: golangci/golangci-lint-action@v8 | |
with: | |
version: v2.5 | |
args: --timeout 15m0s | |
skip-cache: true | |
- name: Run golangci-lint on wasp-cli | |
uses: golangci/golangci-lint-action@v8 | |
with: | |
working-directory: tools/wasp-cli | |
version: v2.5 | |
args: --timeout 15m0s | |
skip-cache: true |