Skip to content

Add test badge

Add test badge #3

Workflow file for this run

name: test
on:
pull_request:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Run tests
run: go test -timeout 30s -run "^TestGreta$" .