Skip to content

fix: Globstar patterns at start now match root-level files correctly #23

fix: Globstar patterns at start now match root-level files correctly

fix: Globstar patterns at start now match root-level files correctly #23

Workflow file for this run

name: Coverage
on:
push:
branches: [main]
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Test with coverage
run: go test ./... -coverprofile=coverage.out
- name: Upload to Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: coverage.out