Skip to content

Migrating to Gymnasium (#1240) #1238

Migrating to Gymnasium (#1240)

Migrating to Gymnasium (#1240) #1238

name: Python package and test
on:
push:
pull_request:
jobs:
checkout-test:
name: Checkout and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["macos-latest", "ubuntu-latest"]
fail-fast: false
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Create python 3.11 conda env
uses: conda-incubator/setup-miniconda@v3
with:
python-version: '3.11'
miniforge-version: latest
activate-environment: donkey
auto-activate-base: false
channels: conda-forge, pytorch
channel-priority: strict
- name: Conda info and list
run: |
conda info
conda list
- name: Install donkey
run: |
pip install -e .[pc,dev]
pip list
- name: Run tests
run: pytest