Skip to content

feat: notation credential store #108

feat: notation credential store

feat: notation credential store #108

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "^1.21"
- name: "Check format"
run: "test -z $(gofmt -l .)"
- name: Build
run: go build -v ./...
- name: Test
run: |
go test -coverprofile=cov.out -v ./...
go tool cover -func=cov.out
- name: Analyze with SonarCloud
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}