From 00bce5ad1d5ac92d20617a9eb2647365bf87cab2 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 9 Oct 2020 16:13:50 +0200 Subject: Splitting preprocessing, Added parsed error helper --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .travis.yml (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..934731a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: c +python: + - "3.6" + +compiler: + - gcc + +before_script: + - git submodule update --init libft + - git submodule update --init minishell_test + +script: + - make + - cd minishell_test && ./run -- cgit