AlexNabokikh / tfsort

A CLI utility to sort Terraform variables and outputs
Apache License 2.0
138 stars 5 forks source link

Coverage profile report incorrect usage #11

Closed AlexNabokikh closed 1 year ago

AlexNabokikh commented 1 year ago

The ncruces/go-coverage-report@main action is supposed to create its own coverage profile.

      - name: Test with Coverage
        run: go test -v -coverprofile=coverage.out ./...

      - name: Coverage Report
        uses: ncruces/go-coverage-report@main
        if: github.ref == 'refs/heads/master'
        with:
          coverage_path: coverage.out