Bump sigstore/cosign-installer from b18d21aaa20ef40c4e681202a598b7591d5be577 to e1523de7571e31dbe865fd2e80c5c7c23ae71eb4 #1892
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go | |
on: | |
pull_request: | |
branches: | |
- main | |
- release-* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install system deps | |
run: 'sudo apt update && sudo apt install -y libgpgme-dev libbtrfs-dev libdevmapper-dev' | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Tidy | |
run: make tidy | |
- name: Vet | |
run: make vet | |
- name: Format | |
run: make fmt | |
- name: Run golangci linting checks | |
run: make lint | |
- name: Test | |
run: make cover | |
- name: Coveralls | |
uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
file: coverage.out | |
- name: Build Multi-arch | |
run: make build-multi-arch |