klip-sdk
Version:
JavaScript SDK to interact with klip App2App requests
21 lines (20 loc) • 704 B
YAML
# WIP
name: Run kas standard test - test_datarace
author: Jeff Kim
description: 'Run kas standard test - test_datarace'
runs:
using: "composite"
steps:
- name: datatrace test
shell: bash
run: |
mkdir -p reports/coverage
go test ./... -timeout 1m -covermode=atomic -coverprofile=reports/coverage/coverage.txt
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: reports/coverage/coverage.txt
flags: unittests # optional
name: codecov-umbrella # optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)