We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a870f27 commit 61d9976Copy full SHA for 61d9976
.github/workflows/conda.yml
@@ -1,4 +1,4 @@
1
-name: Build site
+name: Build site with conda
2
3
on:
4
push:
@@ -7,6 +7,9 @@ on:
7
pull_request:
8
branches:
9
- main
10
+ schedule:
11
+ - cron: '0 5 * * 1'
12
+ workflow_dispatch:
13
14
jobs:
15
test:
@@ -21,7 +24,7 @@ jobs:
21
24
shell: bash -l {0}
22
25
23
26
steps:
- - uses: actions/checkout@v3
27
+ - uses: actions/checkout@v4
28
- uses: conda-incubator/setup-miniconda@v2
29
with:
30
auto-update-conda: true
@@ -30,7 +33,7 @@ jobs:
33
miniforge-variant: Mambaforge
31
34
miniforge-version: latest
32
35
use-mamba: true
- python-version: "3.10"
36
+ python-version: "3.11"
37
auto-activate-base: false
38
- name: inspect and build
39
id: build_step
0 commit comments