Update actions/checkout@v4 #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
- 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 |