Skip to content

fix(app): fix a bug with break mechanism in while loop #13

fix(app): fix a bug with break mechanism in while loop

fix(app): fix a bug with break mechanism in while loop #13

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25' # Specify your desired Go version
- name: Run tests
run: go test -v ./... -race -coverprofile=coverage.out
# Optional: Upload coverage report
- name: Upload coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage.out