Skip to content

Fix: Use shell umount cmd to unmount storage tmp #40

Fix: Use shell umount cmd to unmount storage tmp

Fix: Use shell umount cmd to unmount storage tmp #40

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
container: ghcr.io/vanilla-os/pico:main
steps:
- uses: actions/checkout@v3
- 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 gcc pkg-config libbtrfs-dev libdevmapper-dev libgpgme-dev
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...