Skip to content

Test on Windows with GA #2

Test on Windows with GA

Test on Windows with GA #2

Workflow file for this run

name: Test on Linux and MacOS
on:
- push
- pull_request
jobs:
tests:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: checkout repository
uses: actions/checkout@v2
- name: create environment with mamba
uses: conda-incubator/setup-miniconda@v3
with:
channels: conda-forge
python-version: 3.11
auto-update-conda: true
activate-environment: test
- name: test install conda-app
run: |
which python
python -m pip install -e .
which conda-app
- name: test install mercurial
run: |
conda-app install mercurial
conda env list
- name: test installed mercurial
run: |
if [ -f $HOME/.bash_profile ]; then
. $HOME/.bash_profile;
else
. $HOME/.bashrc;
fi
hg version -v
mkdir -p $HOME/tmp
cd $HOME/tmp
hg clone https://github.com/fluiddyn/conda-app.git
cd conda-app