Skip to content

Bump golang.org/x/crypto from 0.19.0 to 0.21.0 #143

Bump golang.org/x/crypto from 0.19.0 to 0.21.0

Bump golang.org/x/crypto from 0.19.0 to 0.21.0 #143

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
test:
strategy:
matrix:
go-version: [1.20.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: go build ./...
- name: Test
run: go test ./...