Skip to content

Add tests to test the cli #14

Add tests to test the cli

Add tests to test the cli #14

Workflow file for this run

name: Test the code
on:
push:
branches: ["*"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: Run Go tests
run: go test -v ./...
- name: Update coverage report
uses: ncruces/go-coverage-report@main