response: support GL and Loan transaction codes for Returns/NOCs #686
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
# generated-from:87a285b9700150cb5dadffcf3b5525224fba53639666434b20bee326dcd94fc5 DO NOT REMOVE, DO UPDATE | |
name: Go | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Go Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-13, macos-14, windows-latest] | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install make (Windows) | |
if: runner.os == 'Windows' | |
run: choco install -y make mingw | |
- name: Install | |
run: make install | |
- name: Check | |
run: make check | |
env: | |
GOLANGCI_LINTERS: gosec | |
- name: Docker Build | |
if: runner.os == 'Linux' | |
run: make dev-docker | |
- name: Docker Push | |
if: runner.os == 'Linux' && github.repository == 'moov-io' | |
run: |+ | |
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin | |
make dev-push | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} |