[New Feature] CICD Implementation for build and testing OpenDBM in all platforms

This commit is contained in:
Rudy Haryanto
2022-10-04 02:19:07 +07:00
parent a574bc6870
commit 67618c66bc
18 changed files with 857 additions and 1 deletions

20
.pre-commit-config.yaml Normal file
View File

@@ -0,0 +1,20 @@
# .pre-commit-config.yaml
repos:
- repo: https://github.com/python/black.git
rev: 22.6.0
hooks:
- id: black
language_version: python3
- repo: https://github.com/pycqa/isort
rev: 5.10.1
hooks:
- id: isort
name: isort (python)
language_version: python3
- repo: https://gitlab.com/pycqa/flake8.git
rev: 3.9.2
hooks:
- id: flake8
additional_dependencies:
- flake8-black>=0.1.1
language_version: python3