Files
Patrick McCarty 2c7671ad45 Enable container-based Action/Workflow for testing CI
This commit sets up an in-tree, container-based Github Action and
associated workflow for running `make check` and `make unittests` within
a Clear Linux OS Docker container.

The most appropriate bundles to install in the container to satisfy all
test dependencies are `python-extras` (includes `python3-basic` bundle
and the `flake8` tool) and `package-builder` (includes `make`, and the
`pycurl` package).

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
2019-11-13 17:55:59 -08:00

11 lines
245 B
YAML

name: 'Clear in Docker'
description: 'Run commands in the latest Clear Linux OS Docker image'
inputs:
testfunc:
description: 'Test function to run'
required: true
default: 'run_flake8'
runs:
using: 'docker'
image: 'Dockerfile'