Support for Gymnasium Tuple Space #102
Workflow file for this run
This file contains 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: build | |
on: [pull_request, push] | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
build-all: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10'] | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
docker build -f bin/all-py.Dockerfile \ | |
--build-arg PYTHON_VERSION=${{ matrix.python-version }} \ | |
--tag cogment_lab-all-docker . | |
- name: Run tests | |
run: docker run cogment_lab-all-docker pytest tests/* |