Skip to content

bump version: 3.6.0 (#69) #111

bump version: 3.6.0 (#69)

bump version: 3.6.0 (#69) #111

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)