Skip to content

Commit bb095ee

Browse files
authored
feat!: initial implementation of dataphos-core (#1) (#7)
1 parent de24611 commit bb095ee

File tree

69 files changed

+4663
-765
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+4663
-765
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ end_of_line = lf
2020
[*.py]
2121
indent_size = 4
2222

23+
[**/gke_config.py]
24+
indent_size = unset
25+
2326
[*.md]
2427
indent_size = 2
2528
trim_trailing_whitespace = false

.github/workflows/generate_and_check_licenses.py

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

.github/workflows/libs/pr.yaml

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

.github/workflows/pr.yaml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: PR CI
2+
3+
on:
4+
pull_request:
5+
branches: [ develop, main ]
6+
7+
env:
8+
NODE_VERSION: 22
9+
10+
jobs:
11+
commitlint:
12+
name: Commit Lint Job
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0
18+
19+
- name: Set up Node.js
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: ${{ env.NODE_VERSION }}
23+
24+
- name: Install commitlint
25+
run: |
26+
npm install --save-dev @commitlint/{cli,config-conventional}
27+
28+
- name: Validate PR commits with commitlint
29+
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
30+
31+
editor_config_job:
32+
name: Editor Config Job
33+
runs-on: ubuntu-latest
34+
steps:
35+
- name: Check out repository
36+
uses: actions/checkout@v4
37+
38+
- name: Set up Node.js
39+
uses: actions/setup-node@v4
40+
with:
41+
node-version: ${{ env.NODE_VERSION }}
42+
43+
- name: Editor Config
44+
run: |
45+
npm install --save-dev editorconfig-checker
46+
./node_modules/.bin/editorconfig-checker

0 commit comments

Comments
 (0)