Skip to content

FMWK-530 Fix handlers .Wait() context #1055

FMWK-530 Fix handlers .Wait() context

FMWK-530 Fix handlers .Wait() context #1055

Workflow file for this run

name: Tests
on:
push:
branches:
- '**'
workflow_call:
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get go version from go.mod
run: |
echo "GO_VERSION=$(grep '^go ' go.mod | cut -d " " -f 2)" >> $GITHUB_ENV
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Test with coverage
run: |
make coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{secrets.CODECOV_TOKEN}}
files: coverage.cov
verbose: false