Skip to content

generate coverage badge locally #5

generate coverage badge locally

generate coverage badge locally #5

Workflow file for this run

name: Lint and Test Main
on:
push:
branches:
- main
jobs:
Test-And-Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
cache-dependency-path: server/go.sum
# - name: lint
# run: task lint
- name: Run tests
run: go test -v ./...