Skip to content

Bump golang.org/x/crypto from 0.17.0 to 0.21.0 #22

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

Bump golang.org/x/crypto from 0.17.0 to 0.21.0 #22

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go: [1.19.x, 1.20.x, 1.21.x]
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Build
run: go build -v ./...
- name: Run tests
run: go test -race -covermode=atomic -coverprofile=covprofile -v ./...
- name: Update coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=covprofile -service=github