Skip to content

DevDocs: Explain layer types, guidelines, schemas and conformance #63

DevDocs: Explain layer types, guidelines, schemas and conformance

DevDocs: Explain layer types, guidelines, schemas and conformance #63

Workflow file for this run

name: Container Tests
on: [pull_request]
jobs:
build_and_test_containers:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Build containers
run: |
cd docker
make build_alpine
make build_ubuntu
- name: Test Interactive Commands
run: |
cd docker
variant=alpine make run_interactivity_test
variant=ubuntu make run_interactivity_test_pyenv
- name: Run unit tests in Ubuntu container
run: |
cd docker
make run_ubuntu_test
- name: Run unit tests in Alpine container
run: |
cd docker
make run_alpine_test