Skip to content

Bump golang.org/x/image from 0.5.0 to 0.10.0 #25

Bump golang.org/x/image from 0.5.0 to 0.10.0

Bump golang.org/x/image from 0.5.0 to 0.10.0 #25

Workflow file for this run

name: Go
on:
push:
branches: [ gh-pages ]
pull_request:
branches: [ gh-pages ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.15
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
sudo apt-get update
sudo apt-get install libgl1-mesa-dev xorg-dev
go get -v -t -d ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...