chore(deps): Update go minor and patch #14220
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: ci-badger-bank-tests | |
| on: | |
| workflow_dispatch: # allows manual trigger from GitHub | |
| pull_request: | |
| paths-ignore: | |
| - "**.md" | |
| - docs/** | |
| - images/** | |
| branches: | |
| - main | |
| - release/v* | |
| permissions: | |
| contents: read | |
| jobs: | |
| badger-bank: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| 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 |