Skip to content

Pr/209 - created from #209 #364

Pr/209 - created from #209

Pr/209 - created from #209 #364

name: Install from repository
on:
schedule:
- cron: '42 23 * * 3' # every Wednesday at 23:42
pull_request:
types: [opened, reopened, edited, synchronize]
workflow_dispatch:
jobs:
build-conda-on-windows:
name: ConFlowGen installation via conda on Windows
runs-on: windows-2019
env:
MPLBACKEND: Agg
steps:
- name: Skip Duplicate Actions
uses: fkirc/skip-duplicate-actions@v5
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
auto-activate-base: true
activate-environment: true
python-version: '3.10'
- name: Install ConFlowGen
run: |
conda info
conda create -n test-install-conflowgen -c conda-forge conflowgen pytest
- name: Prepare tests
run: |
conda activate test-install-conflowgen
conda install pillow>=9.0
- name: Run tests
run: |
conda activate test-install-conflowgen
python -c "import conflowgen; print('ConFlowGen version: ', conflowgen.__version__)"
python -m pytest --pyargs conflowgen
build-conda-on-linux:
name: ConFlowGen installation via conda on Linux
runs-on: ubuntu-latest
env:
MPLBACKEND: Agg
steps:
- name: Skip Duplicate Actions
uses: fkirc/skip-duplicate-actions@v5
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
auto-activate-base: true
activate-environment: ""
- name: Install ConFlowGen
run: |
conda init bash
eval "$(conda shell.bash hook)"
conda info
conda activate base
conda create -n test-install-conflowgen -c conda-forge conflowgen pytest
- name: Run tests
run: |
eval "$(conda shell.bash hook)"
conda activate test-install-conflowgen
python -c "import conflowgen; print('ConFlowGen version: ', conflowgen.__version__)"
python -m pytest --pyargs conflowgen
build-pip:
strategy:
matrix:
os: [ubuntu-latest, windows-2019]
name: ConFlowGen installation via pip
runs-on: ${{ matrix.os }}
env:
MPLBACKEND: Agg
steps:
- name: Skip Duplicate Actions
uses: fkirc/skip-duplicate-actions@v5
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install ConFlowGen
run: |
python -m pip install conflowgen pytest
python -m pip show --verbose conflowgen
- name: Run tests
run: |
python -c "import conflowgen; print('ConFlowGen version: ', conflowgen.__version__)"
python -m pytest --pyargs conflowgen