This repository has been archived by the owner on Feb 18, 2025. It is now read-only.
core/bloombits: fix deadlock when matcher session hits an error (#281… #1858
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: Run Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout Repo' | |
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c #v3.3.0 | |
- name: 'Setup Go' | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22.10' | |
- name: 'Go Test- Test Coverage' | |
run: make test |