From d6759fb1b8852255fc9e4aa72d80ec3e610def1e Mon Sep 17 00:00:00 2001 From: skidoodle Date: Sun, 14 Sep 2025 18:57:11 +0200 Subject: [PATCH] forgot vips --- .github/workflows/go.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 72e3776..6927b4a 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -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 ./...