Skip to content

Commit fd73d14

Browse files
authored
Merge pull request #202 from bsipocz/CI_fix_conda_job
CI: fix conda job
2 parents a870f27 + 60df7f7 commit fd73d14

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/conda.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build site
1+
name: Test building site with conda environment
22

33
on:
44
push:
@@ -7,6 +7,9 @@ on:
77
pull_request:
88
branches:
99
- main
10+
schedule:
11+
- cron: '0 5 * * 1'
12+
workflow_dispatch:
1013

1114
jobs:
1215
test:
@@ -21,16 +24,16 @@ jobs:
2124
shell: bash -l {0}
2225

2326
steps:
24-
- uses: actions/checkout@v3
25-
- uses: conda-incubator/setup-miniconda@v2
27+
- uses: actions/checkout@v4
28+
- uses: conda-incubator/setup-miniconda@v3
2629
with:
2730
auto-update-conda: true
2831
activate-environment: numpy-tutorials
2932
environment-file: environment.yml
3033
miniforge-variant: Mambaforge
3134
miniforge-version: latest
3235
use-mamba: true
33-
python-version: "3.10"
36+
python-version: "3.11"
3437
auto-activate-base: false
3538
- name: inspect and build
3639
id: build_step

0 commit comments

Comments
 (0)