From 9538d9c2b13ea24d3f9a83946f65ac62693ae9b0 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Wed, 18 Mar 2020 15:55:19 +0000 Subject: Reorganize CI workflows --- .github/workflows/coverage.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/coverage.yml (limited to '.github/workflows/coverage.yml') diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml new file mode 100644 index 0000000..946113a --- /dev/null +++ b/.github/workflows/coverage.yml @@ -0,0 +1,27 @@ +name: Coverage + +on: + push: + branches: [ master ] + +jobs: + coverage: + name: Gather coverage data + runs-on: ubuntu-latest + steps: + - name: Checkout branch + uses: actions/checkout@master + with: + submodules: true + - name: Setup Rust toolchain + uses: actions-rs/toolchain@v1 + with: + profile: minimal + - name: Run tests with tarpaulin + uses: actions-rs/tarpaulin@v0.1 + with: + args: '--all --exclude-files abnf_to_pest/* --exclude-files dhall_proc_macros/*' + - name: Upload coverage data to codecov.io + uses: codecov/codecov-action@v1.0.2 + with: + token: ${{secrets.CODECOV_TOKEN}} -- cgit v1.2.3