Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit eebf9f8

Browse files
author
Richard Liang
committed
Replaced the action-junit-report action with test-results-action.
Also tried to update the badges in the README.
1 parent 3f59bd6 commit eebf9f8

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,14 @@ jobs:
5252
with:
5353
token: ${{ secrets.CODECOV_TOKEN }}
5454

55-
- name: Publish Test Report
56-
uses: mikepenz/action-junit-report@v5
57-
if: success() || failure()
55+
# - name: Publish Test Report
56+
# uses: mikepenz/action-junit-report@v5
57+
# if: success() || failure()
58+
# with:
59+
# report_paths: pytest.xml
60+
61+
- name: Upload test results to Codecov
62+
if: ${{ !cancelled() }}
63+
uses: codecov/test-results-action@v1
5864
with:
59-
report_paths: pytest.xml
65+
token: ${{ secrets.CODECOV_TOKEN }}

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
# BC-CfE HLA algorithm
22

3-
[![pipeline status](https://git-int.cfenet.ubc.ca/drickett/pyeasyhla/badges/main/pipeline.svg)](https://git-int.cfenet.ubc.ca/drickett/pyeasyhla/-/commits/main)
4-
[![coverage report](https://git-int.cfenet.ubc.ca/drickett/pyeasyhla/badges/main/coverage.svg)](https://git-int.cfenet.ubc.ca/drickett/pyeasyhla/-/commits/main)
5-
[![Latest Release](https://git-int.cfenet.ubc.ca/drickett/pyeasyhla/-/badges/release.svg)](https://git-int.cfenet.ubc.ca/drickett/pyeasyhla/-/releases)
6-
7-
[[_TOC_]]
3+
[![test](https://github.com/cfe-lab/hla_algorithm/actions/workflows/test.yml/badge.svg)](https://github.com/cfe-lab/hla_algorithm/actions/workflows/test.yml)
4+
[![codecov](https://codecov.io/gh/cfe-lab/hla_algorithm/graph/badge.svg?token=ZJQKPBRTQB)](https://codecov.io/gh/cfe-lab/hla_algorithm)
5+
![GitHub Release](https://img.shields.io/github/v/release/cfe-lab/hla_algorithm?sort=semver)
86

97
## Objective
108

0 commit comments

Comments
 (0)