Skip to content

chore(deps): bump golang.org/x/crypto from 0.25.0 to 0.26.0 #98

chore(deps): bump golang.org/x/crypto from 0.25.0 to 0.26.0

chore(deps): bump golang.org/x/crypto from 0.25.0 to 0.26.0 #98

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@v4
- name: Set up Go
uses: actions/setup-go@v5
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