Skip to content

Better code organization and added status bar #173

Better code organization and added status bar

Better code organization and added status bar #173

Workflow file for this run

name: Go Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
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'
check-latest: true
- name: Run tests
run: go test ./...
- name: Run test (race)
run: go test ./... -race