-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(management/project): added create project domain * feat(github): added ci to run clippy and unit tests * feat: configured sqlite driven * feat: basic rpc runner * feat: added event driver * chore: changed folder driven names * feat: implemented event bridge basics * chore: removed spec dependence * feat: improved kafka implementation and validate driver event consumer * feat: adjuted event bridge * feat: adjusted cache driven * feat: grpc driver project proto implemented * chore: adjusted github ci * chore: adjusted github ci * chore: adjusted github ci * chore: updated sqlx files * chore: adjusted clippy github ci * chore: moved events to be used for both domains * feat: implemented daemon and namespace creation on k8s * fix: fixed validation if namespace already exist * chore: migrated protos to use from specs repository * chore: updated cargo dependences * docs: improved readme * docs: improved readme
- Loading branch information
1 parent
7d028b4
commit eba54b2
Showing
33 changed files
with
4,330 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Clippy | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
env: | ||
SQLX_OFFLINE: true | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Protoc | ||
uses: arduino/setup-protoc@v3 | ||
|
||
- name: Clippy check lints | ||
run: cargo clippy -- -D warnings | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
unit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Protoc | ||
uses: arduino/setup-protoc@v3 | ||
|
||
- name: Run Unit Tests | ||
run: cargo test --lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
/target | ||
.env | ||
dev.db* |
12 changes: 12 additions & 0 deletions
12
.sqlx/query-006dacd453618e63d755431396f5e75dc7c4532ac3a8aa8c276dac375c46f6d4.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
26 changes: 26 additions & 0 deletions
26
.sqlx/query-a90cb11c72343ef904f48aa625ff8fcdfe5b48dbb901d3f0c67702c94036d58e.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.