main (submission) & petric (backend) framework #31
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: run | |
on: | |
push: | |
branches: ['**'] | |
tags: ['**'] | |
paths-ignore: ['.gitignore', 'LICENSE*', 'LICENCE*', 'README.md', 'SIRF_data_preparation/*'] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/synerbi/sirf:latest | |
options: --user root # https://github.com/actions/checkout/issues/956 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
if test -f apt.txt; then | |
sudo apt-get update | |
xargs -a apt.txt sudo apt-get install -y | |
fi | |
if test -f environment.yml; then | |
conda install --file environment.yml | |
fi | |
if test -f requirements.txt; then | |
pip install -r requirements.txt | |
fi | |
- name: Test imports | |
run: | | |
python <<EOF | |
from main import Submission, submission_callbacks | |
from cil.optimisation.algorithms import Algorithm | |
assert issubclass(Submission, Algorithm) | |
assert isinstance(submission_callbacks, list) | |
assert all(callable(callback) for callback in submission_callbacks) | |
EOF | |
full: | |
if: startsWith(github.ref, 'refs/tags') | |
runs-on: [self-hosted, docker, cuda] | |
steps: | |
- uses: actions/checkout@v4 | |
with: {fetch-depth: 0, submodules: recursive} | |
- run: petric |