1
0
mirror of https://github.com/coalaura/ffwebp.git synced 2025-09-07 05:35:30 +00:00

ensure integration tests

This commit is contained in:
Laura
2025-08-13 22:12:04 +02:00
parent 6cf75f9745
commit 96937f04fa

View File

@@ -9,7 +9,23 @@ permissions:
contents: write
jobs:
test:
name: Integration tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run integration tests
run: go test -v ./integration
build:
needs: test
runs-on: ubuntu-latest
strategy:
@@ -26,7 +42,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.0'
go-version-file: 'go.mod'
- name: Generate Windows resources
if: matrix.goos == 'windows'