Skip to content

Add fixes for Minigrid domain (#46) #231

Add fixes for Minigrid domain (#46)

Add fixes for Minigrid domain (#46) #231

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
python-version: "3.10"
- os: ubuntu-24.04
python-version: "3.13"
steps:
- uses: actions/[email protected]
- name: Install dependencies
run: |
# ocaml is needed for crewplanning
sudo apt install ocaml ocamlbuild tox
curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Show environment
run: |
python --version
python3 -c "import multiprocessing as m; print('CPUs:', m.cpu_count())"
- name: Run tests
run: |
tox -e py