name: build on: [pull_request, push] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: ['3.7', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2 - run: | docker build -f py.Dockerfile \ --build-arg PYTHON_VERSION=${{ matrix.python-version }} \ --tag gym-minigrid-docker . - name: Run tests run: docker run gym-minigrid-docker pytest