Skip to content

fix(deps): update module golang.org/x/image to v0.23.0 (#43) #28

fix(deps): update module golang.org/x/image to v0.23.0 (#43)

fix(deps): update module golang.org/x/image to v0.23.0 (#43) #28

Workflow file for this run

name: Build
on:
push:
branches:
- main
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 📥 Check out the repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
- name: 🛠️ Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: 📦 Install dependencies
run: go mod download
- name: 🧪 Test
run: go test -v ./...
- name: 🧹 Check formatting
run: |
go fmt ./...
git diff --exit-code