Skip to content

Merge pull request #27 from GoComply/dependabot/go_modules/github.com… #117

Merge pull request #27 from GoComply/dependabot/go_modules/github.com…

Merge pull request #27 from GoComply/dependabot/go_modules/github.com… #117

Workflow file for this run

name: Build CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
go-version: [1.18.x, 1.19.x, 1.20.x]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get Go dependencies
run: go get -v -t -d ./...
- name: Unit tests
run: go test ./...