Skip to content

Bump golang.org/x/crypto from 0.22.0 to 0.24.0 #238

Bump golang.org/x/crypto from 0.22.0 to 0.24.0

Bump golang.org/x/crypto from 0.22.0 to 0.24.0 #238

Workflow file for this run

name: Go Test and Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-and-build:
name: Test and Build
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.x
- name: Run Tests
run: make test
- name: Build
run: make build