mirror of
https://github.com/clearlinux/autospec.git
synced 2026-09-06 05:41:50 +00:00
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>
11 lines
245 B
YAML
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'
|