Skip to content

fix(orgadm): add credentials-project flag and fix IAM policy version … #291

fix(orgadm): add credentials-project flag and fix IAM policy version …

fix(orgadm): add credentials-project flag and fix IAM policy version … #291

Workflow file for this run

name: coverage
permissions:
contents: read
on:
pull_request:
push:
branches:
- "main"
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: "1.25"
- run: go test -v -coverprofile=profile.cov ./...
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov
parallel: true
# notifies that all test jobs are finished.
finish:
needs: coverage
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true