Skip to content

feat(prepaid-credits): Add attributes to Wallet #409

feat(prepaid-credits): Add attributes to Wallet

feat(prepaid-credits): Add attributes to Wallet #409

Workflow file for this run

name: golangci-lint
on:
push:
tags:
- v*
branches:
- main
pull_request:
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: go.mod
# The builtin cache feature ensures that installing golangci-lint
# is consistently fast.
cache: true
cache-dependency-path: go.sum
- name: install-golangci-lint
# Install golangci-lint from source instead of using
# golangci-lint-action to ensure the golangci-lint binary is built with
# the same Go version we're targeting.
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.47.3
- name: golangci-lint
run: golangci-lint run --version --verbose --out-format=github-actions