Skip to content

Commit

Permalink
add coverage workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
danieleades committed Dec 29, 2021
1 parent 8092fc0 commit 4435b40
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
on: [push, pull_request]

name: Code Coverage

jobs:
coverage:
name: coverage
runs-on: ubuntu-latest
steps:
- name: checkout source
uses: actions/checkout@v2

- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
override: true

- name: Run cargo-tarpaulin
uses: actions-rs/tarpaulin@v0.1
with:
args: --all-features --tests --doc

- name: Upload to codecov.io
uses: codecov/codecov-action@v2.1.0

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
[![Build Status](https://travis-ci.org/mehcode/config-rs.svg?branch=master)](https://travis-ci.org/mehcode/config-rs)
[![Crates.io](https://img.shields.io/crates/d/config.svg)](https://crates.io/crates/config)
[![Docs.rs](https://docs.rs/config/badge.svg)](https://docs.rs/config)
[![codecov](https://codecov.io/gh/mehcode/config-rs/branch/master/graph/badge.svg)](https://codecov.io/gh/mehcode/config-rs)

> Layered configuration system for Rust applications (with strong support for [12-factor] applications).
Expand Down

0 comments on commit 4435b40

Please sign in to comment.