Skip to content

REP-5140 Report change events in progress logs. #11

REP-5140 Report change events in progress logs.

REP-5140 Report change events in progress logs. #11

Workflow file for this run

on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
jobs:
basics:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go_version:
# This is hard-coded by design in order to catch inadvertent changes
# to the minimum-required Go version to build migration-verifier.
- 1.19
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Fetch Go ${{ matrix.go_version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go_version }}
- name: Build
run: go build main/migration_verifier.go
- name: Lint
run: python3 ./evergreen/go_lint.py