Add a CI for building dependencies.

This commit is contained in:
FireMasterK 2020-09-15 13:33:46 +05:30 committed by GitHub
parent f16ed8c6e6
commit 1242b49f8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

18
.circleci/config.yml Normal file
View File

@ -0,0 +1,18 @@
version: 2.1
orbs:
python: circleci/python@1.0.0
jobs:
build-and-test:
executor: python/default
steps:
- checkout
- python/install-packages:
pkg-manager: pip
# TODO: Tests
workflows:
main:
jobs:
- build-and-test