chore(deps): bump google.golang.org/protobuf from 1.36.1 to 1.36.2 in the patch group #14041
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-badger-bank-tests | |
on: | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- '.github/*' | |
- '.github/ISSUE_TEMPLATE/*' | |
- 'docs/**' | |
- 'images/**' | |
branches: | |
- main | |
- 'release/v*' | |
jobs: | |
badger-bank: | |
runs-on: warp-ubuntu-latest-x64-4x | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Install Dependencies | |
run: make dependency | |
- name: Install jemalloc | |
run: make jemalloc | |
- name: Install Badger | |
run: cd badger && go install --race --tags=jemalloc . | |
- name: Run Badger Bank Test | |
run: | | |
#!/bin/bash | |
mkdir bank && cd bank | |
badger bank test -v --dir=. -d=20m |