Added get multiple api for badger #13880
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-tests | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - "**.md" | |
| - docs/** | |
| - images/** | |
| branches: | |
| - main | |
| - release/v* | |
| permissions: | |
| contents: read | |
| jobs: | |
| badger-tests: | |
| 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: Run Badger Tests | |
| run: make test |