Skip to content

Bump golang.org/x/crypto from 0.0.0-20200709230013-948cd5f35899 to 0.17.0 #65

Bump golang.org/x/crypto from 0.0.0-20200709230013-948cd5f35899 to 0.17.0

Bump golang.org/x/crypto from 0.0.0-20200709230013-948cd5f35899 to 0.17.0 #65

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [ master, main ]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
go: ['1.18', '1.19']
name: Go ${{ matrix.go }} Test
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Run test suite
run: |
go test -coverprofile=profile.cov
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov
flag-name: Go-${{ matrix.go }}
parallel: true
finish:
needs: test
runs-on: ubuntu-20.04
steps:
- uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true