SNV frequency-based substitution matrix construction for CRAM writer #1152
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: coverage | |
on: [push, pull_request] | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache m2 repository | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/project.clj') }} | |
restore-keys: | | |
${{ runner.os }}-m2- | |
- name: Install dependencies | |
run: lein deps | |
- name: Generate Coverage Report | |
run: | | |
lein cloverage --codecov | |
- name: Coverage Graph | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ./target/coverage/codecov.json | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |