Skip to content

fix canary task stop #104

fix canary task stop

fix canary task stop #104

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Check mod
run: |
go install
git diff --exit-code
- run: go build
- run: go build github.com/loilo-inc/canarycage/cli/cage
- run: go test -coverprofile=coverage.txt -covermode=count
- name: Upload Coverage
run: bash <(curl -s https://codecov.io/bash)