blob: 934731a34b6168163abb13af0be4d83ee1405d4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|