DO NOT MERGE: fake code addition #34
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: "Unit tests" | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
tags: | |
- "[0-9]+.[0-9]+.[0-9]+" | |
schedule: | |
# Weekly on saturday 23:59 | |
- cron: "59 23 * * 6" | |
jobs: | |
test_suite: | |
runs-on: [self-hosted, linux, x64, gpu] | |
container: | |
image: continuumio/miniconda3 | |
options: --runtime=nvidia --gpus all | |
steps: | |
- name: Pull code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
conda install -y -c conda-forge python=3 cupy cuda-version=11.8 | |
python -m pip install coverage | |
- name: Install code and list dependencies | |
run: | | |
python -m pip install .[plotting] | |
conda list | |
- name: Run tests and generate coverage | |
run: | | |
cd tests | |
coverage run -m unittest discover | |
coverage xml coverage.xml | |
echo ${{ github.event.number }} > coverage.PR | |
- name: upload coverage report | |
uses: actions/upload-artifact@v4 | |
with: | |
path: tests/coverage.* | |
name: coverage |