workflow: update to work with the images dependencies

This commit updates the GH workflow file to install the required
dependencies to build the images library.
This commit is contained in:
Michael Vogt 2024-11-18 10:58:03 +01:00
parent 7a838332c8
commit 56f9c6969c

View file

@ -19,7 +19,14 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: 'stable'
- name: Apt update
run: sudo apt update
# This is needed for the container resolver dependencies
- name: Install libgpgme devel package
run: sudo apt install -y libgpgme-dev libbtrfs-dev libdevmapper-dev podman
- name: Build
run: go build -v ./...