Add fix for payment method is string #18
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: Security check - Go Nancy | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- staging | |
- main | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Set up Go 1.x in order to write go.list file | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ^1.13 | |
- name: WriteGoList | |
run: go list -json -m all > go.list | |
- name: Nancy | |
uses: sonatype-nexus-community/nancy-github-action@main | |
continue-on-error: true |