Skip to content

Bump golang.org/x/image from 0.15.0 to 0.17.0 #94

Bump golang.org/x/image from 0.15.0 to 0.17.0

Bump golang.org/x/image from 0.15.0 to 0.17.0 #94

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: golangci/golangci-lint-action@v5
- run: go build -v ./...
- run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}