Skip to content

Ctrl+C does not wait when tasker binary is running as daemon #153

Ctrl+C does not wait when tasker binary is running as daemon

Ctrl+C does not wait when tasker binary is running as daemon #153

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go-version: [1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -cover -coverprofile=coverage.txt -covermode=atomic ./...
- name: Cov
run: bash <(curl -s https://codecov.io/bash)