Skip to content

Bump golang.org/x/crypto from 0.22.0 to 0.23.0 #976

Bump golang.org/x/crypto from 0.22.0 to 0.23.0

Bump golang.org/x/crypto from 0.22.0 to 0.23.0 #976

Workflow file for this run

name: test
on:
push:
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- "stable"
- "1.22"
- "1.21"
goarch:
- amd64
include:
# test on 32-bit platforms
- go: "stable"
goarch: "386"
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: test
run: |
go test -v -coverprofile=profile.cov ./...
env:
GOARCH: ${{ matrix.goarch }}
- uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov
flag-name: Go-${{ matrix.go }}
parallel: true
# notifies that all test jobs are finished.
finish:
if: always()
needs: test
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true