-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #407 from minos-framework/0.7.0.dev2
0.7.0.dev2
- Loading branch information
Showing
378 changed files
with
13,940 additions
and
7,548 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
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
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,33 @@ | ||
name: "Publish: minos-database-aiopg" | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*.*.x' | ||
paths: | ||
- 'packages/plugins/minos-database-aiopg/**' | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
container: python:3.9-buster | ||
defaults: | ||
run: | ||
working-directory: packages/plugins/minos-database-aiopg | ||
|
||
steps: | ||
|
||
- name: Check out repository code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Poetry | ||
uses: snok/install-poetry@v1 | ||
|
||
- name: Install dependencies | ||
run: make install | ||
|
||
- name: Publish package | ||
run: make release | ||
env: | ||
POETRY_HTTP_BASIC_PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }} | ||
POETRY_HTTP_BASIC_PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} |
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,64 @@ | ||
name: "Test: minos-database-aiopg" | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- '*.*.x' | ||
pull_request: | ||
paths: | ||
- 'packages/plugins/minos-database-aiopg/**' | ||
- 'packages/core/minos-microservice-aggregate/**' | ||
- 'packages/core/minos-microservice-networks/**' | ||
- 'packages/core/minos-microservice-common/**' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: python:3.9-buster | ||
defaults: | ||
run: | ||
working-directory: packages/plugins/minos-database-aiopg | ||
|
||
services: | ||
postgres: | ||
image: postgres | ||
env: | ||
POSTGRES_USER: minos | ||
POSTGRES_PASSWORD: min0s | ||
POSTGRES_DB: order_db | ||
ports: | ||
- 5432:5432 | ||
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | ||
|
||
env: | ||
MINOS_DATABASES_DEFAULT_HOST: postgres | ||
|
||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Poetry | ||
uses: snok/install-poetry@v1 | ||
|
||
- name: Install dependencies | ||
run: make install | ||
|
||
- name: Lint package | ||
run: make lint | ||
|
||
- name: Test package with coverage | ||
run: make coverage | ||
|
||
- name: Publish coverage | ||
uses: codecov/codecov-action@v2 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: ./packages/plugins/minos-database-aiopg/coverage.xml | ||
fail_ci_if_error: true | ||
|
||
- name: Generate documentation | ||
run: make docs | ||
|
||
- name: Generate build | ||
run: make dist |
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,33 @@ | ||
name: "Publish: minos-database-lmdb" | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*.*.x' | ||
paths: | ||
- 'packages/plugins/minos-database-lmdb/**' | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
container: python:3.9-buster | ||
defaults: | ||
run: | ||
working-directory: packages/plugins/minos-database-lmdb | ||
|
||
steps: | ||
|
||
- name: Check out repository code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Poetry | ||
uses: snok/install-poetry@v1 | ||
|
||
- name: Install dependencies | ||
run: make install | ||
|
||
- name: Publish package | ||
run: make release | ||
env: | ||
POETRY_HTTP_BASIC_PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }} | ||
POETRY_HTTP_BASIC_PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} |
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,49 @@ | ||
name: "Test: minos-database-lmdb" | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- '*.*.x' | ||
pull_request: | ||
paths: | ||
- 'packages/plugins/minos-database-lmdb/**' | ||
- 'packages/core/minos-microservice-saga/**' | ||
- 'packages/core/minos-microservice-common/**' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: python:3.9-buster | ||
defaults: | ||
run: | ||
working-directory: packages/plugins/minos-database-lmdb | ||
|
||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Poetry | ||
uses: snok/install-poetry@v1 | ||
|
||
- name: Install dependencies | ||
run: make install | ||
|
||
- name: Lint package | ||
run: make lint | ||
|
||
- name: Test package with coverage | ||
run: make coverage | ||
|
||
- name: Publish coverage | ||
uses: codecov/codecov-action@v2 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: ./packages/plugins/minos-database-lmdb/coverage.xml | ||
fail_ci_if_error: true | ||
|
||
- name: Generate documentation | ||
run: make docs | ||
|
||
- name: Generate build | ||
run: make dist |
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
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
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
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
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
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
Oops, something went wrong.