We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a870f27 + 60df7f7 commit fd73d14Copy full SHA for fd73d14
.github/workflows/conda.yml
@@ -1,4 +1,4 @@
1
-name: Build site
+name: Test building site with conda environment
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,16 +24,16 @@ jobs:
21
24
shell: bash -l {0}
22
25
23
26
steps:
- - uses: actions/checkout@v3
- - uses: conda-incubator/setup-miniconda@v2
27
+ - uses: actions/checkout@v4
28
+ - uses: conda-incubator/setup-miniconda@v3
29
with:
30
auto-update-conda: true
31
activate-environment: numpy-tutorials
32
environment-file: environment.yml
33
miniforge-variant: Mambaforge
34
miniforge-version: latest
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