Skip to content

Bump golang.org/x/crypto from 0.9.0 to 0.17.0 #45

Bump golang.org/x/crypto from 0.9.0 to 0.17.0

Bump golang.org/x/crypto from 0.9.0 to 0.17.0 #45

Workflow file for this run

on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- '1.19'
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- uses: actions/checkout@v3
- run: go test -v -coverprofile=profile.cov ./...
- name: Send coverage
uses: shogo82148/actions-goveralls@v1.7.0
with:
path-to-profile: profile.cov
flag-name: Go-${{ matrix.go }}
parallel: true
# notifies that all test jobs are finished.
finish:
needs: test
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1.7.0
with:
parallel-finished: true