build(deps): bump go.etcd.io/bbolt from 1.3.10 to 1.3.11 #634
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
# To run locally: | |
# make docker-test | |
name: Test | |
on: | |
push: | |
branches: | |
- main | |
merge_group: | |
pull_request: | |
jobs: | |
cleanup-runs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: rokroskar/workflow-run-cleanup-action@master | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/main'" | |
Test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Build | |
uses: docker/[email protected] | |
with: | |
driver: docker | |
- name: Build Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./tools | |
file: ./tools/Dockerfile | |
tags: "cometbft/cometbft-db-testing:latest" | |
load: true | |
- name: test & coverage report creation | |
run: | | |
NON_INTERACTIVE=1 make docker-test | |
- uses: codecov/codecov-action@v4 | |
with: | |
file: ./coverage.txt |