Skip to content

Bump golang.org/x/crypto from 0.1.0 to 0.17.0 #566

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

Bump golang.org/x/crypto from 0.1.0 to 0.17.0 #566

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.17
- name: checkout
uses: actions/checkout@v3
- name: Unit tests
run: make test
- name: Upload code coverage
uses: codecov/codecov-action@v3
with:
files: cover.out
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.45.2
# Optional: if set to true then the action don't cache or restore ~/go/pkg.
skip-pkg-cache: true
# Optional: if set to true then the action don't cache or restore ~/.cache/go-build.
skip-build-cache: true