Skip to content

Update README.md

Update README.md #148

Workflow file for this run

# This workflow will install Python dependencies, run tests with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
miniconda:
name: Miniconda ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest"]
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: luci
environment-file: luci.yml
python-version: 3.9.5
auto-activate-base: false
- shell: bash -l {0}
run: |
conda info
conda list
- name: Run pytest
shell: bash -l {0}
run: |
conda install pytest
pytest