Skip to content

build(deps): bump golang.org/x/crypto from 0.17.0 to 0.31.0 (#17) #10

build(deps): bump golang.org/x/crypto from 0.17.0 to 0.31.0 (#17)

build(deps): bump golang.org/x/crypto from 0.17.0 to 0.31.0 (#17) #10

Workflow file for this run

name: test
on:
pull_request:
branches:
- "*"
push:
branches:
- "*"
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go_version:
- 1.17.x
- 1.18.x
- 1.19.x
- 1.20.x
name: Test with ${{ matrix.go_version }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go_version }}
- name: Vet and test
run: |
go version
go vet ./...
go test ./...