Skip to content

Remove invalid package_manager_path from container_init options #64

Remove invalid package_manager_path from container_init options

Remove invalid package_manager_path from container_init options #64

Workflow file for this run

---
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