Skip to content

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

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 #31

Workflow file for this run

name: Go
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
name: Build Go ${{ matrix.go-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: [1.14.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Set up Go ${{ matrix.go-version }} on ${{ matrix.os }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Build on ${{ matrix.os }}
env:
GO111MODULE: on
run: |
go test -tags gofuzz ./...