Skip to content

Update to libwebp v1.3.2 #21

Update to libwebp v1.3.2

Update to libwebp v1.3.2 #21

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.18.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test Linux
if: matrix.os == 'ubuntu-latest'
run: go test -race ./libwebp -coverprofile=coverage.txt -covermode=atomic
- name: Test Other
if: matrix.os != 'ubuntu-latest'
run: go test ./libwebp
- name: Upload coverage
if: success() && matrix.os == 'ubuntu-latest'
run: |
curl -s https://codecov.io/bash | bash
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
shell: bash