diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-01-31 02:38:49 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-01-31 02:38:49 +0100 |
| commit | 4a4f6b5b01bd6d23c141d51dd9399c36d12d29d9 (patch) | |
| tree | 6cc08bd49decda6f91c8464b95cafc4945214b50 /.travis.yml | |
| parent | 19c93b393853d5ba052904914356147e27813ad0 (diff) | |
| download | minishell_test-4a4f6b5b01bd6d23c141d51dd9399c36d12d29d9.tar.gz minishell_test-4a4f6b5b01bd6d23c141d51dd9399c36d12d29d9.tar.bz2 minishell_test-4a4f6b5b01bd6d23c141d51dd9399c36d12d29d9.zip | |
Fixing some type error, Added travis ci
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..83ec84c --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: python +python: + - "3.5" + - "3.6" + - "3.7" + - "3.8" + - "3.9" + +install: + - pip install -r requirements.txt + +script: + - python -m mypy src + - python -m flake8 |
