goimagehash/.github/workflows/ci_gomodule.yml
2019-12-07 10:50:05 +09:00

22 lines
519 B
YAML

on: [pull_request]
name: goimagehash workflow
jobs:
test:
strategy:
matrix:
go-version: [1.11.x, 1.12.x, 1.13.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v1
with:
path: src/github.com/corona10/goimagehash
- name: Test
run: go test ./...