Skip to content

Fix: -p/--plus unable to calculate the total number added. #18

Fix: -p/--plus unable to calculate the total number added.

Fix: -p/--plus unable to calculate the total number added. #18

Workflow file for this run

name: Test
on:
push:
branches:
- master
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- ".github/workflows/test.yml"
pull_request:
types: [opened, synchronize, reopened]
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- ".github/workflows/test.yml"
jobs:
test:
permissions:
contents: read
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
check-latest: true
- name: Checkout codebase
uses: actions/checkout@v4
- name: Test
run: |
go test -timeout 5m -v ./...