Skip to content

Commit

Permalink
back to full example
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsilver committed Aug 17, 2024
1 parent 170790e commit 42f7810
Showing 1 changed file with 11 additions and 29 deletions.
40 changes: 11 additions & 29 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [pull_request]

jobs:
unit-tests:
name: Ex3 Linux
name: Unit Tests
runs-on: "ubuntu-20.04"
defaults:
run:
Expand All @@ -15,32 +15,14 @@ jobs:
with:
activate-environment: rcareworld
python-version: "3.10"
- name: Install dependencies
- run: |
conda info
conda list
# unit-tests:
# 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
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

0 comments on commit 42f7810

Please sign in to comment.