Skip to content

Bump golang.org/x/crypto from 0.16.0 to 0.17.0 #8

Bump golang.org/x/crypto from 0.16.0 to 0.17.0

Bump golang.org/x/crypto from 0.16.0 to 0.17.0 #8

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- master
paths-ignore:
- '**/README.md'
- LICENSE
push:
branches:
- master
tags:
- 'v*'
paths-ignore:
- '**/README.md'
- LICENSE
jobs:
unit:
runs-on: ubuntu-latest
steps:
- name: Setup
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Checkout
uses: actions/checkout@v4
- name: Dependencies
run: go mod download
- name: Preparations
run: make prep
- name: Tests
run: make tests