Skip to content

Commit bae1292

Browse files
author
Кирилл Горелов
committed
Initial commit
1 parent a305260 commit bae1292

File tree

8 files changed

+57
-30
lines changed

8 files changed

+57
-30
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
__pycache__/
2+
*.py[cod]
3+
*.log
4+
*.zip
5+
*.egg-info/
6+
insert_tools/.pytest_cache/
7+
insert_tools/.mypy_cache/

.idea/.gitignore

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Python CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
16+
- name: Set up Python
17+
uses: actions/setup-python@v4
18+
with:
19+
python-version: '3.10'
20+
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install -r requirements.txt
25+
pip install -r requirements-dev.txt
26+
pip install .
27+
28+
- name: Run tests
29+
run: |
30+
pytest -v --tb=short

insert_tools/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# 🚀 Insert Tools
22

3+
[![CI](https://github.com/ТВОЙ_НИК/insert-tools/actions/workflows/python-ci.yml/badge.svg)](https://github.com/ТВОЙ_НИК/insert-tools/actions)
4+
![Python](https://img.shields.io/badge/python-3.8%2B-blue)
5+
![License](https://img.shields.io/badge/license-MIT-green)
6+
37
**Проблема:**
48

59
Вы сталкивались с проблемами при вставке данных в базы данных? Постоянные ошибки соответствия схем, неправильные типы данных, потеря времени на ручные проверки и риск случайного повреждения данных — всё это знакомо каждому, кто регулярно работает с большими ETL-процессами и базами данных.

insert_tools/clickhouse_insert/.github/workflows/python-ci.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)