Skip to content

Bump golang.org/x/crypto from 0.24.0 to 0.27.0 (#676) #1446

Bump golang.org/x/crypto from 0.24.0 to 0.27.0 (#676)

Bump golang.org/x/crypto from 0.24.0 to 0.27.0 (#676) #1446

Workflow file for this run

name: Test
on:
push:
branches:
- main
- master
- develop
- update-external-dependencies
pull_request:
jobs:
test:
strategy:
matrix:
go-version: [ 1.21.x ]
goarch: [ "amd64" ]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
env:
GOARCH: ${{ matrix.goarch }}
- name: Test
run: make test
- name: Benchmark Test
run: make bench