Skip to content

Merge pull request #273 from moov-io/renovate/all #573

Merge pull request #273 from moov-io/renovate/all

Merge pull request #273 from moov-io/renovate/all #573

Workflow file for this run

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-latest, windows-latest]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: stable
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Install make (Windows)
if: runner.os == 'Windows'
run: choco install -y make mingw
- name: Build
run: make build
- name: Check
run: make check
- name: Upload Code Coverage
if: runner.os == 'Linux'
run: bash <(curl -s https://codecov.io/bash)
docker:
name: Docker Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: 'stable'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Docker Build
if: runner.os == 'Linux'
run: make docker && make build && make test-integration && make clean-integration