Skip to content

Commit

Permalink
Merge pull request #15 from AntoinePrv/ci
Browse files Browse the repository at this point in the history
Fix CI
  • Loading branch information
AntoinePrv authored Oct 9, 2023
2 parents 247b5f3 + f42324b commit 0377e9d
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/test_micro.mamba.pm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ on:
schedule:
- cron: '0 10 * * *'
push:
branches:
- main
paths:
- '.github/workflows/test_micro.mamba.pm.yml'
pull_request:
branches:
- main
paths:
- '.github/workflows/test_micro.mamba.pm.yml'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -36,14 +36,17 @@ jobs:
- {os: windows-latest, shell: bash, shell-source-param: -l}
steps:
- name: Install Micromamba (${{ matrix.os }}, ${{ matrix.shell }})
shell: ${{ matrix.shell }}
# Need to force the shell to get the default *calling* shell right
run: |
"${SHELL}" <(curl -sL http://micro.mamba.pm/install.sh)
${{ matrix.shell }} -c 'curl -sL http://micro.mamba.pm/install.sh | ${SHELL}'
- name: Test Micromamba
# use either -l or -i to source .bash_profile or .bashrc/.zshrc
shell: ${{ matrix.shell }} -ec ${{ matrix.shell-source-param }} {0}
run: |
micromamba --help
${{ matrix.shell }} ${{ matrix.shell-source-param }} -ec micromamba
- name: Test Micromamba
# use either -l or -i to source .bash_profile or .bashrc/.zshrc
run: |
${{ matrix.shell }} ${{ matrix.shell-source-param }} -ec micromamba
issue:
runs-on: ubuntu-latest
needs: test_micro_mamba_pm
Expand Down

0 comments on commit 0377e9d

Please sign in to comment.