Skip to content

Merge remote-tracking branch 'origin/main' #3

Merge remote-tracking branch 'origin/main'

Merge remote-tracking branch 'origin/main' #3

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Install dependencies
run: go mod download
- name: Build
run: go build -v .
- name: Test install on Linux
if: matrix.os == 'ubuntu-latest'
run: make test-linux
- name: Test install on Windows
if: matrix.os == 'windows-latest'
run: make test-windows
- name: Test install on macOS
if: matrix.os == 'macOS-latest'
run: make test-macos