Skip to content

Commit

Permalink
Test on Windows with GA
Browse files Browse the repository at this point in the history
  • Loading branch information
paugier committed Oct 26, 2024
1 parent 9d7e5b9 commit 39a0441
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml → .github/workflows/unix.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: CI
name: Test on Linux and MacOS

on:
- push
- pull_request

jobs:
tests:
name: ${{ matrix.os }}
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
defaults:
run:
Expand Down
42 changes: 42 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Test on Windows

on:
- push
- pull_request

jobs:
test:
name: Test on Windows
runs-on: windows-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
auto-activate-base: true
activate-environment: ""

- name: check conda
run: conda env list

- name: install conda-app
run: python -m pip install -e .

- name: test install mercurial
run: |
conda-app install mercurial
conda env list
- name: test installed mercurial
run: |
hg version -v
hg debuginstall
cd $HOME
hg clone https://github.com/fluiddyn/conda-app.git
cd conda-app

0 comments on commit 39a0441

Please sign in to comment.