Skip to content

Merge branch 'main' of github.com:flagship-io/abtasty-cli #42

Merge branch 'main' of github.com:flagship-io/abtasty-cli

Merge branch 'main' of github.com:flagship-io/abtasty-cli #42

Workflow file for this run

name: CI pipeline
# This workflow is triggered on pushes to the repository.
on:
push:
workflow_call:
jobs:
build:
name: Test & Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Run tests
run: go test -race `go list ./... | grep -v cmd/feature-experimentation/analyze | grep -v cmd/feature-experimentation/resource` -coverprofile cover.out.tmp
- name: Removes mocks from tests
run: cat cover.out.tmp | grep -v "mock_\|cmd/feature-experimentation/analyze" | grep -v "mock_\|cmd/feature-experimentation/resource" > cover.out
- uses: vladopajic/go-test-coverage@v2
with:
profile: ./cover.out
local-prefix: github.com/flagship-io/abtasty-cli
threshold-total: 70
git-branch: badges
git-token: ${{ github.ref_name == 'main' && secrets.ABTASTY_CLI_BADGE || '' }}