Skip to content

Add basic unanimated webp encoding and decoding support #43

Add basic unanimated webp encoding and decoding support

Add basic unanimated webp encoding and decoding support #43

Workflow file for this run

name: Check
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
check:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
go-version:
- '1.21'
- '1.22'
- '1.23'
- '1.24'
- '1.25'
- '1.26'
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: make build
- name: Test
run: make test