Skip to content

Internal - BTP access secret resolving improvement #1725

Internal - BTP access secret resolving improvement

Internal - BTP access secret resolving improvement #1725

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.22.2
uses: actions/setup-go@v2
with:
go-version: 1.22.2
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
make envtest
- name: Build
run: go build -v ./...
- name: Test
run: make test
- name: Lint
run: make lint
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov