populate frame shutdown related fields at complete or abort events only #286
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- master | |
- v* | |
pull_request: | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: ['stable', 'oldstable'] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- run: go test -race ./... |