Skip to content
This repository has been archived by the owner on Nov 7, 2023. It is now read-only.

chore: update README regarding project merge into Terramate #139

chore: update README regarding project merge into Terramate

chore: update README regarding project merge into Terramate #139

Workflow file for this run

# Copyright 2021 Mineiros GmbH
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: coverage report
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-20.04
name: generate and publish coverage
env:
COVERAGE_REPORT: coverage.txt
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup Go
uses: actions/setup-go@v2
with:
go-version: "1.19"
- name: generate coverage report
run: make coverage
- name: upload coverage to codecov
uses: codecov/codecov-action@v2
with:
directory: .
files: ${{env.COVERAGE_REPORT}}
flags: tests
name: codecov-umbrella
verbose: true