Skip to content

build(deps): bump golang.org/x/crypto from 0.22.0 to 0.23.0 #89

build(deps): bump golang.org/x/crypto from 0.22.0 to 0.23.0

build(deps): bump golang.org/x/crypto from 0.22.0 to 0.23.0 #89

Workflow file for this run

name: Test
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
strategy:
fail-fast: false
matrix:
go-version:
- "1.20"
- "1.21"
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
# Run basic tests, we just want to make sure there is parity on Linux and
# macOS, and back to the oldest version of Go this library supports.
- name: Run tests
run: go test ./...