forked from mamba-org/mamba
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (46 loc) · 1.41 KB
/
test_micro.mamba.pm.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Test micro.mamba.pm
on:
schedule:
- cron: '0 10 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
issues: write
defaults:
run:
shell: bash -el {0}
jobs:
test_micro_mamba_pm:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
shell: [bash]
# TODO: Fix zsh support
# include:
# - {os: macos-latest, shell: zsh}
steps:
- name: Install Micromamba (${{ matrix.os }}, ${{ matrix.shell }})
run: |
# TODO: Update install.sh script for Windows
if [ ${{ matrix.os }} = windows-latest ]; then
mkdir -p ~/bin
curl -Ls https://micro.mamba.pm/api/micromamba/win-64/latest \
| bunzip2 | tar xOf - Library/bin/micromamba.exe > ~/bin/micromamba.exe
else
curl http://micro.mamba.pm/install.sh | ${{ matrix.shell }}
fi
- name: Test Micromamba
run: ${{ matrix.shell }} -elc "micromamba --version"
- uses: dblock/create-a-github-issue@2c9fa0d32c24d651281c37d21e5b49e333500fe8
#if: failure()
if: false
with:
filename: .github/workflows/test_issue.md
update_existing: true
search_existing: all
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}