We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dab8639 commit 0e298fdCopy full SHA for 0e298fd
.github/workflows/micromamba.yml
.github/workflows/miniconda_miniforge.yml
.github/workflows/oras.yml
.github/workflows/run_conda.yml
@@ -0,0 +1,25 @@
1
+name: run_on_conda
2
+on:
3
+ pull_request:
4
+ workflow_dispatch:
5
+ schedule:
6
+ - cron: "30 1 * * *" # at 1.30am
7
+
8
+jobs:
9
+ run-benchmark:
10
+ name: Run on conda
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ ob_branch: [main]
15
+ fail-fast: false
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
20
+ - name: Use action
21
+ uses: omnibenchmark/run_omnibenchmark@main
22
+ with:
23
+ yaml: Clustering_conda.yaml
24
+ backend: conda
25
+ omnibenchmark_branch: ${{ matrix.ob_branch }}
0 commit comments