Skip to content

Fix code for symmetries augmentation #37

Fix code for symmetries augmentation

Fix code for symmetries augmentation #37

Workflow file for this run

name: 馃И CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rsl-rl-version: ["3.1.3", "3.3.0", "4.0.1", "5.2.0"]
python-version: ["3.10"]
name: rsl-rl-lib ${{ matrix.rsl-rl-version }}
steps:
- uses: actions/checkout@v4
- name: 馃悕 Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: 馃摝 Install dependencies
run: |
python -m pip install --upgrade pip
pip install "rsl-rl-lib==${{ matrix.rsl-rl-version }}"
pip install -e ".[examples,mlflow,wandb]"
pip install pytest
- name: 馃И Run tests
run: python -m pytest tests/ -v