Add fixes for Minigrid domain (#46) #231
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |