From 09ca32f073a60c334213af901d9c57daf1f0db41 Mon Sep 17 00:00:00 2001 From: Henry Date: Tue, 4 Jun 2024 15:19:23 +0200 Subject: [PATCH] :zap: reduce action runtime by configuring tasks --- .github/workflows/release.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ff5d377e..2bc24c50 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -36,19 +36,23 @@ jobs: - name: Prepare tutorial data run: | cd tutorial + move-dl data=random_small task=encode_data --cfg job move-dl data=random_small task=encode_data - name: Train model and analyze latent space run: | cd tutorial + move-dl data=random_small task=random_small__latent --cfg job move-dl data=random_small task=random_small__latent - name: Identify associations - t-test run: | cd tutorial - move-dl data=random_small task=random_small__id_assoc_ttest + move-dl data=random_small task=random_small__id_assoc_ttest --cfg job + move-dl data=random_small task=random_small__id_assoc_ttest task.training_loop.num_epochs=10 task.num_refits=4 - name: Identify associations - bayes factors run: | cd tutorial - move-dl data=random_small task=random_small__id_assoc_bayes + move-dl data=random_small task=random_small__id_assoc_bayes --cfg job + move-dl data=random_small task=random_small__id_assoc_bayes task.training_loop.num_epochs=10 task.num_refits=4 publish: name: Publish package