Skip to content

Bump golang.org/x/image from 0.15.0 to 0.16.0 (#38) #226

Bump golang.org/x/image from 0.15.0 to 0.16.0 (#38)

Bump golang.org/x/image from 0.15.0 to 0.16.0 (#38) #226

Workflow file for this run

name: Unit Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "35 21 * * 3"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.17
- name: Build
run: go build -v ./...
- name: Vet
run: go vet -v ./...
- name: Test
run: go test -timeout 300s -v ./...
env:
HUGGING_FACE_TOKEN: ${{ secrets.HUGGING_FACE_TOKEN }}
- name: Build Examples
run: cd examples && ./build_examples.sh || exit 1
shell: bash