Skip to content

feat: Basic Lvm support #91

feat: Basic Lvm support

feat: Basic Lvm support #91

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/vanilla-os/pico:main
options: --privileged --user root
volumes:
- /dev:/dev
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Install build dependencies
run: |
apt-get update
apt-get install -y build-essential pkg-config libbtrfs-dev libdevmapper-dev libgpgme-dev lvm2 parted
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...