Skip to content

Bump golang.org/x/image from 0.0.0-20180708004352-c73c2afc3b81 to 0.10.0 #4

Bump golang.org/x/image from 0.0.0-20180708004352-c73c2afc3b81 to 0.10.0

Bump golang.org/x/image from 0.0.0-20180708004352-c73c2afc3b81 to 0.10.0 #4

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.21.x"]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Install dependencies
run: make dev-deps
- name: Run tests
run: make ci
- name: Update coverage report
uses: ncruces/go-coverage-report@v0
with:
report: true
chart: true
amend: true
reuse-go: true
if: |
github.event_name == 'push'
continue-on-error: true