Skip to content

chore(deps): bump github.com/diskfs/go-diskfs from 1.4.0 to 1.4.1 #96

chore(deps): bump github.com/diskfs/go-diskfs from 1.4.0 to 1.4.1

chore(deps): bump github.com/diskfs/go-diskfs from 1.4.0 to 1.4.1 #96

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