Skip to content

fix(deps): update module golang.org/x/crypto to v0.28.0 #267

fix(deps): update module golang.org/x/crypto to v0.28.0

fix(deps): update module golang.org/x/crypto to v0.28.0 #267

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.17', '1.16', '1.15' ]
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- uses: actions/checkout@v3
- name: Tidy
run: |
rm -f go.sum
go mod tidy
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...