Skip to content

Testing: let the proxy engine close gracefully on slow test runners #269

Testing: let the proxy engine close gracefully on slow test runners

Testing: let the proxy engine close gracefully on slow test runners #269

Workflow file for this run

name: tests
on:
push:
branches: ["main", "development"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: vet
run: go vet ./...
- name: test
run: go test -v -coverprofile=coverage.txt -covermode=atomic ./...
- name: codecov
run: bash <(curl -s https://codecov.io/bash)