Skip to content

Commit

Permalink
Create coverage.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen authored Sep 29, 2024
1 parent f8dbd0c commit 6705c1d
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Unittests

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Conda config
shell: bash -l {0}
run: echo -e "channels:\n - conda-forge\n" > .condarc
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: '3.12'
miniforge-version: latest
condarc-file: .condarc
environment-file: .ci_support/environment.yml
- name: Test
shell: bash -l {0}
timeout-minutes: 5
run: |
pip install versioneer[toml]==0.29
pip install . --no-deps --no-build-isolation
conda create -y -n py312 python=3.12.1 conda=24.7.1 executorlib=0.0.2
conda activate py312
pip install versioneer[toml]==0.29
pip install . --no-deps --no-build-isolation
conda deactivate
coverage run --omit="conda_subprocess/_version.py,tests/*" -m unittest discover tests
- name: Collect Coverage
shell: bash -l {0}
run: coverage xml
- name: Coveralls
uses: coverallsapp/github-action@v2

0 comments on commit 6705c1d

Please sign in to comment.