Skip to content

Closing the engine during the main thread termination #29

Closing the engine during the main thread termination

Closing the engine during the main thread termination #29

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:
branches: [ "master", "dev" ]
pull_request:
branches: [ "master", "dev" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
cache-dependency-path: go.sum
- name: Test
run: go test -v -json ./... > TestResults.json
- name: Upload test results
uses: actions/upload-artifact@v3
with:
name: Go-results
path: TestResults.json
- name: Build
run: go build -v ./...