-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test coverage as a separate workflow
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Test Coverage | ||
on: [pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.11" | ||
- name: Install dependencies | ||
run: | | ||
C:\Miniconda\condabin\conda.bat update -n base -c defaults conda | ||
C:\Miniconda\condabin\conda.bat config --add channels conda-forge | ||
C:\Miniconda\condabin\conda.bat config --set channel_priority strict | ||
C:\Miniconda\condabin\conda.bat env update --file environment.yaml --name base | ||
C:\Miniconda\condabin\conda.bat activate base | ||
C:\Miniconda\condabin\conda.bat install coverage | ||
pip install genbadge[coverage] | ||
C:\Miniconda\condabin\conda.bat list | ||
C:\Miniconda\condabin\conda.bat init powershell | ||
- name: Check coverage | ||
run: | | ||
# Activate the testenv environment | ||
C:\Miniconda\condabin\conda.bat activate base | ||
C:\Miniconda\condabin\conda.bat list | ||
coverage xml -o coverage.xml | ||
genbadge coverage -i coverage.xml |