Skip to content

Bump github.com/ProtonMail/gopenpgp/v2 from 2.8.0 to 2.8.1 (#13) #57

Bump github.com/ProtonMail/gopenpgp/v2 from 2.8.0 to 2.8.1 (#13)

Bump github.com/ProtonMail/gopenpgp/v2 from 2.8.0 to 2.8.1 (#13) #57

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@v4
- name: Setup Go environment
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Run tests with coverage
run: go test -v -race -covermode atomic -coverprofile=covprofile -coverpkg ./... ./...
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Send coverage report
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=covprofile -service=github