Skip to content

Add missing workgroup done call #202

Add missing workgroup done call

Add missing workgroup done call #202

Workflow file for this run

name: CI
on:
push:
branches:
- "main"
pull_request:
branches:
- "**"
types: [opened, synchronize]
concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
tests:
if: (github.event.action != 'closed' || github.event.pull_request.merged == true)
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.21.x
- name: Install dependencies on Linux
if: runner.os == 'Linux'
run: sudo apt update && sudo apt install build-essential
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/Library/Caches/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-
- name: Build
run: CGO_ENABLED=0 GOOS=linux go build -o ./opsrelay
- name: Test
run: make test