Skip to content

fix: test path

fix: test path #38

Workflow file for this run

name: GoTest
on:
push:
branches:
- master
- main
jobs:
test:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Test
run: go test -v -tags test ./...
- name: Test & publish code coverage
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: go test -tags test -race -covermode=atomic -coverprofile=c.out ./...
prefix: "github.com/dopos/narra"
debug: true