Skip to content

Fix timeout

Fix timeout #1544

Workflow file for this run

name: Test and coverage
on: [push, pull_request]
# This ensures that previous jobs for the PR are canceled when the PR is updated.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
test:
name: Go Test
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Set up Go 1.19
uses: actions/setup-go@v4
with:
go-version: 1.19
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Run coverage
shell: bash
run: |
make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3