Skip to content

Bump golang.org/x/crypto from 0.39.0 to 0.45.0 #89

Bump golang.org/x/crypto from 0.39.0 to 0.45.0

Bump golang.org/x/crypto from 0.39.0 to 0.45.0 #89

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- master
env:
GO_VERSION: "1.24"
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Setup golang ${{ env.GO_VERSION }}
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: go build -v .
- name: Import test GPG key
run: gpg --import test/testing-key.pgp
- name: Test
run: make test
- name: Crossbuild
run: make crossbuild