forgot vips

This commit is contained in:
2025-09-14 18:57:11 +02:00
parent 767ccb856b
commit d6759fb1b8

View File

@@ -7,7 +7,6 @@ on:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
@@ -18,6 +17,9 @@ jobs:
with:
go-version: '1.25.1'
- name: Install Vips
run: sudo apt-get update && sudo apt-get install -y libvips-dev
- name: Cache Go Modules
uses: actions/cache@v3
with:
@@ -27,7 +29,7 @@ jobs:
${{ runner.os }}-go-
- name: Build
run: go build -v ./...
run: CGO_ENABLED=1 go build -v ./...
- name: Test
run: go test -v ./...
run: CGO_ENABLED=1 go test -v ./...