Skip to content

Bump golang.org/x/crypto from 0.26.0 to 0.31.0 in the go_modules group #30

Bump golang.org/x/crypto from 0.26.0 to 0.31.0 in the go_modules group

Bump golang.org/x/crypto from 0.26.0 to 0.31.0 in the go_modules group #30

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [ '1.21', '1.22' ]
env:
VERBOSE: 1
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Run tests with race detector
run: |
go test -count=1 -race ./...