Skip to content

Bump github.com/sethvargo/go-diceware from 0.3.0 to 0.4.0 #68

Bump github.com/sethvargo/go-diceware from 0.3.0 to 0.4.0

Bump github.com/sethvargo/go-diceware from 0.3.0 to 0.4.0 #68

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@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