mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-05-02 13:44:33 +00:00
This adds a basic Makefile where we can use a central go test script in order to run the tests for the CI. Fixes #109 Signed-off-by: Gabriela Cervantes <gabriela.cervantes.tellez@intel.com>
12 lines
150 B
Bash
Executable File
12 lines
150 B
Bash
Executable File
#
|
|
# Copyright (c) 2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -e
|
|
|
|
cidir=$(dirname "$0")
|
|
source "${cidir}/lib.sh"
|
|
|
|
run_go_test
|