chore(deps): bump Go to 1.23.5 #66
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: Test fast (no changes to Dockerfile) | |
on: | |
pull_request: | |
merge_group: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
test-fast: | |
runs-on: ubuntu-latest | |
container: cometbft/cometbft-db-testing | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure Git Safe Directory | |
run: git config --global --add safe.directory /__w/cometbft-db/cometbft-db | |
- id: filter | |
uses: dorny/paths-filter@v3 | |
with: | |
filters: | | |
tools: | |
- "tools/**" | |
- run: echo "GO_VERSION=$(cat .github/workflows/go-version.env | grep GO_VERSION | cut -d '=' -f2)" >> $GITHUB_ENV | |
if: steps.filter.outputs.tools == 'false' | |
- uses: actions/setup-go@v5 | |
if: steps.filter.outputs.tools == 'false' | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: test & coverage report creation | |
if: steps.filter.outputs.tools == 'false' | |
run: | | |
NON_INTERACTIVE=1 make test-all-with-coverage | |
- uses: codecov/codecov-action@v4 | |
if: steps.filter.outputs.tools == 'false' | |
with: | |
file: ./coverage.txt |