Skip to content

Merge branch 'stable' of https://github.com/uc-cdis/cdis-data-client … #273

Merge branch 'stable' of https://github.com/uc-cdis/cdis-data-client …

Merge branch 'stable' of https://github.com/uc-cdis/cdis-data-client … #273

name: Golang CI Workflow
on: push
jobs:
ci:
runs-on: ubuntu-latest
env:
COVERAGE_PROFILE_OUTPUT_LOCATION: "./profile.cov"
steps:
- name: Checkout code / lint code / install dependencies for goveralls / run tests
uses: uc-cdis/.github/.github/actions/golang-ci@master
with:
COVERAGE_PROFILE_OUTPUT_LOCATION: ${{ env.COVERAGE_PROFILE_OUTPUT_LOCATION }}
- name: Send coverage to coveralls using goveralls
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=${{ env.COVERAGE_PROFILE_OUTPUT_LOCATION }} -service=github