Skip to content

try again

try again #4

Workflow file for this run

name: CI Checks
on: [pull_request]
jobs:
unit-tests:

Check failure on line 6 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
name: Unit Tests
runs-on: ubuntu-20.04
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: anaconda-client-env
environment-file: etc/example-environment-caching.yml
python-version: 3.10
- name: Install dependencies
run: |
conda create -n rcareworld python=3.10
conda activate rcareworld
cd RCareWorld/pyrcareworld
pip install -r requirements.txt
pip install -e .
pip uninstall numpy
conda install numpy
- name: Verify that installation works
run: |
cd RCareWorld/template
python test_bathing.py