Skip to content

Bump golang.org/x/crypto from 0.10.0 to 0.17.0 #32

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

Bump golang.org/x/crypto from 0.10.0 to 0.17.0 #32

Workflow file for this run

# Copyright 2021 The customerror Authors. All rights reserved.
# Use of this source code is governed by a MIT
# license that can be found in the LICENSE file.
---
name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Setup golangci-lint
uses: golangci/golangci-lint-action@v3.1.0
with:
version: v1.51.2
- name: Lint
run: golangci-lint run -v -c .golangci.yml
- name: Test
run: make test coverage