Skip to content

Bump golang.org/x/crypto from 0.25.0 to 0.26.0 #61

Bump golang.org/x/crypto from 0.25.0 to 0.26.0

Bump golang.org/x/crypto from 0.25.0 to 0.26.0 #61

Workflow file for this run

name: PR check
on:
pull_request:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: golangci/golangci-lint-action@v6
test:
name: Test
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v5
with:
go-version: ^1.22
- run: go test -race -timeout 1m