Add functionality for MR metadata reading from SAV #246
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Codecov | |
on: [ push, pull_request ] | |
jobs: | |
codecov: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install packages | |
run: sudo apt install gettext | |
- uses: actions/checkout@v2 | |
- name: Autoconf | |
run: autoreconf -i -f | |
- name: Configure | |
run: ./configure --enable-code-coverage | |
- name: Make | |
run: make | |
- name: Run tests | |
run: make check | |
- name: Generate corpus | |
run: make generate_corpus | |
- name: Move coverage files | |
run: mv src/.libs/*.gc* . | |
- name: Move more coverage files | |
run: mv src/*/.libs/*.gc* . | |
- name: Upload coverage files | |
run: bash <(curl -s https://codecov.io/bash) |