Skip to content

Merge pull request #380 from VictorAvelar/feat/add-payment-links-new-… #682

Merge pull request #380 from VictorAvelar/feat/add-payment-links-new-…

Merge pull request #380 from VictorAvelar/feat/add-payment-links-new-… #682

Workflow file for this run

name: Golang testing
on:
push:
branches:
- master
paths-ignore:
- "**.md"
- "*.yml"
- "Makefile"
- "docs/*.md"
- ".gitignore"
- "LICENSE"
- ".github/*.yml"
- ".github/ISSUE_TEMPLATE/*.md"
- ".github/*.md"
- ".github/workflows/release.yml"
pull_request:
paths-ignore:
- "**.md"
- "*.yml"
- "Makefile"
- "docs/*.md"
- ".gitignore"
- "LICENSE"
- ".github/*.yml"
- ".github/ISSUE_TEMPLATE/*.md"
- ".github/*.md"
- ".github/workflows/release.yml"
jobs:
testing:
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
go: [1.20.x, 1.21.x, 1.22.x]
name: Go ${{ matrix.go }} check
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
with:
go-version: ${{ matrix.go }}
- run: go test -failfast ./...