Skip to content

updated github actions to v4 #367

updated github actions to v4

updated github actions to v4 #367

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on: push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
include:
- os: windows-latest
env:
NO_WINDOWS_SERVICE: 0
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Build
run: go build -v
- name: Test
run: go test -v ./...
- name: Integration
run: ./.github/workflows/integration.sh
shell: bash
env:
CI: true