Skip to content

build(deps): bump github.com/sumup/sumup-go from 0.12.0 to 0.13.0 in /backend/go in the sumup-sdk group #2

build(deps): bump github.com/sumup/sumup-go from 0.12.0 to 0.13.0 in /backend/go in the sumup-sdk group

build(deps): bump github.com/sumup/sumup-go from 0.12.0 to 0.13.0 in /backend/go in the sumup-sdk group #2

Workflow file for this run

name: Go CI
on:
push:
branches: [main]
paths: [backend/go/**, .github/workflows/go.yaml]
pull_request:
branches: [main]
paths: [backend/go/**, .github/workflows/go.yaml]
jobs:
backend-go:
name: Backend Go
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend/go
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: backend/go/go.mod
- name: Vet
run: go vet ./...
- name: Build
run: go build ./...