Skip to content

Bump golang.org/x/crypto from 0.10.0 to 0.11.0 #21

Bump golang.org/x/crypto from 0.10.0 to 0.11.0

Bump golang.org/x/crypto from 0.10.0 to 0.11.0 #21

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ 'stable' ]
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: |
sudo apt update && sudo apt install -y libcryptsetup-dev
- name: Lint
run: make lint
- name: Test
run: make test