DeepRVAT Tests π§πΌβπ»β #227
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: DeepRVAT test runner | |
run-name: DeepRVAT Tests π§πΌβπ»β | |
on: [ push ] | |
jobs: | |
DeepRVAT-Tests-Runner: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- uses: mamba-org/setup-micromamba@v1.4.3 | |
with: | |
environment-name: deeprvat-preprocess-gh-action | |
environment-file: ${{ github.workspace }}/deeprvat_preprocessing_env.yml | |
cache-environment: true | |
cache-downloads: true | |
- name: Install DeepRVAT | |
run: pip install -e ${{ github.workspace }} | |
shell: micromamba-shell {0} | |
- name: Run pytest | |
run: pytest -v ${{ github.workspace }}/tests | |
shell: micromamba-shell {0} |