Adds paymentId to 3DS init and GarantiPay init #211
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Craftgate Go Client CI | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go 1.19 | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: go.mod | |
cache: true | |
cache-dependency-path: go.sum | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Go Lint | |
uses: golangci/golangci-lint-action@v3 | |
- name: Get dependencies | |
run: | | |
go get -v -t -d | |
- name: Build | |
run: go build -v . | |
- name: Test | |
run: go test |