Skip to content

Bump golang.org/x/crypto from 0.22.0 to 0.31.0 #53

Bump golang.org/x/crypto from 0.22.0 to 0.31.0

Bump golang.org/x/crypto from 0.22.0 to 0.31.0 #53

Workflow file for this run

name: unit-tests
on:
pull_request:
branches:
- main
paths:
- '**.go'
- Makefile
- go.mod
- go.sum
jobs:
unit-tests:
name: make test
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version:
- "1.21.x"
- "1.22.x"
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: install go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: make test
run: make test