Merge pull request #241 from Farama-Foundation/pre-commit-CI-fix #826
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 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v2 | |
- run: | | |
docker build -f py.Dockerfile \ | |
--build-arg PYTHON_VERSION=${{ matrix.python-version }} \ | |
--tag gymnasium-robotics-docker . | |
- name: Run tests | |
run: docker run gymnasium-robotics-docker pytest |