Skip to content

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

build(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0

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

Workflow file for this run

name: build
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.18, 1.19, "1.20"] # warn: yml 1.20 -> 1.2
steps:
- uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Go Env
run: go env
- name: Test
run: make test
- name: Build
run: make all