Skip to content

e2e for workload identity and instance principal auth mechanisms #60

e2e for workload identity and instance principal auth mechanisms

e2e for workload identity and instance principal auth mechanisms #60

Workflow file for this run

name: Unit Tests
on:
workflow_call: {}
push:
branches-ignore:
- gh-pages
jobs:
build-binary-n-test:
name: Build Binary locally and run unit tests
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.19
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: build the binary
run: |
go build -mod vendor -o dist/provider ./cmd/server/main.go
- name: Run Unit Tests
run: |
go test -covermode=count -coverprofile=profile.cov ./...
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
GO111MODULE=off go get github.com/mattn/goveralls
$(go env GOPATH)/bin/goveralls -coverprofile=profile.cov -service=github