Skip to content

CI: fix conda job #202

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 22, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/conda.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build site
name: Build site with conda

on:
push:
Expand All @@ -7,6 +7,9 @@ on:
pull_request:
branches:
- main
schedule:
- cron: '0 5 * * 1'
workflow_dispatch:

jobs:
test:
Expand All @@ -21,16 +24,16 @@ jobs:
shell: bash -l {0}

steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
activate-environment: numpy-tutorials
environment-file: environment.yml
miniforge-variant: Mambaforge
miniforge-version: latest
use-mamba: true
python-version: "3.10"
python-version: "3.11"
auto-activate-base: false
- name: inspect and build
id: build_step
Expand Down