Skip to content

liecasadi

liecasadi #588

Workflow file for this run

name: liecasadi
on:
push:
pull_request:
schedule:
# * is a special character in YAML so you have to quote this string
# Execute a "nightly" build at 2 AM UTC
- cron: '0 2 * * *'
jobs:
build:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: [3.8]
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
auto-activate-base: true
activate-environment: true
channels: conda-forge
channel-priority: true
- name: Install dependencies
run: |
conda install -y -c conda-forge manifpy
pip install .[test]
- name: Test with pytest
run: |
pytest