Skip to content

Commit

Permalink
Rename ci env file to test env file
Browse files Browse the repository at this point in the history
  • Loading branch information
robertapplin committed Mar 28, 2024
1 parent 2acb1fd commit 95fd69f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v2.2.0
- name: Setup Build Env
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-variant: Mambaforge
environment-file: conda/recipe/qeb-build-py310.yml
Expand All @@ -27,12 +27,12 @@ jobs:
run: |
cd conda/recipe
conda build . --output-folder .
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v2.2.0
- name: Setup Test Env
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-variant: Mambaforge
environment-file: conda/recipe/qeb-ci-py310.yml
activate-environment: qeb-ci-py310
environment-file: conda/recipe/qeb-test-py310.yml
activate-environment: qeb-test-py310
- name: Install & Test
run: |
conda install --use-local conda/recipe/*-64/quasielasticbayes-0.2.0-*.tar.bz2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
name: qeb-ci-py310
name: qeb-test-py310

channels:
- conda-forge

dependencies:
- conda-build
- conda-verify
- numpy
- python=3.10.*
- pytest

0 comments on commit 95fd69f

Please sign in to comment.