Skip to content

Bump golang.org/x/crypto from 0.0.0-20220926161630-eccd6366d1be to 0.22.0 #61

Bump golang.org/x/crypto from 0.0.0-20220926161630-eccd6366d1be to 0.22.0

Bump golang.org/x/crypto from 0.0.0-20220926161630-eccd6366d1be to 0.22.0 #61

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v ./src/cmd
- name: Test
run: go test ./src/...