Skip to content

Commit

Permalink
Fix and simplify CI test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
BSchilperoort committed Sep 5, 2024
1 parent ed93f54 commit efedac9
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,16 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
fail-fast: false
name: Run tests in mamba environment ${{ matrix.python-version }}
name: Run tests in mamba environment
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download mamba environment.yml
run:
wget https://raw.githubusercontent.com/eWaterCycle/ewatercycle/main/environment.yml
wget https://raw.githubusercontent.com/eWaterCycle/ewatercycle/main/conda-lock.yml
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment.yml
environment-file: conda-lock.yml
environment-name: ci
cache-environment: true
init-shell: bash
- name: Install dependencies
Expand Down

0 comments on commit efedac9

Please sign in to comment.