Skip to content

Fix images

Fix images #28

Workflow file for this run

name: Fuzz
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
all:
strategy:
matrix:
package: [words, sentences, graphemes]
fuzzer: [FuzzValidShort, FuzzValidLong, FuzzInvalid]
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.18'
check-latest: true
- name: Check out code
uses: actions/checkout@v3
- name: ${{ matrix.package }}.${{ matrix.fuzzer }}
run: go test -fuzz=${{ matrix.fuzzer }} -fuzztime=60s github.com/clipperhouse/uax29/${{ matrix.package }}