Remove invalid package_manager_path from container_init options #64
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: CI | |
| # on: | |
| # pull_request: | |
| # branches: [main] | |
| # push: | |
| # branches: [main] | |
| jobs: | |
| podman: | |
| runs-on: ubuntu-latest | |
| name: Podman | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: "3.9" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install tox | |
| - name: Build EE with Podman | |
| run: | | |
| tox -e podman | |
| docker: | |
| runs-on: ubuntu-latest | |
| name: Docker | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: "3.9" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install tox | |
| - name: Build EE with Docker | |
| env: | |
| DOCKER_BUILDKIT: 1 | |
| run: | | |
| tox -e docker |