-
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 #461 from minos-framework/0.8.0
0.8.0.dev1
- Loading branch information
Showing
229 changed files
with
6,025 additions
and
3,188 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
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
33 changes: 33 additions & 0 deletions
33
.github/workflows/minos-microservice-transactions-publish.yml
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-microservice-transactions" | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*.*.x' | ||
paths: | ||
- 'packages/core/minos-microservice-transactions/**' | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
container: python:3.9-buster | ||
defaults: | ||
run: | ||
working-directory: packages/core/minos-microservice-transactions | ||
|
||
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 }} |
48 changes: 48 additions & 0 deletions
48
.github/workflows/minos-microservice-transactions-tests.yml
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,48 @@ | ||
name: "Test: minos-microservice-transactions" | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- '*.*.x' | ||
pull_request: | ||
paths: | ||
- 'packages/core/minos-microservice-transactions/**' | ||
- 'packages/core/minos-microservice-common/**' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: python:3.9-buster | ||
defaults: | ||
run: | ||
working-directory: packages/core/minos-microservice-transactions | ||
|
||
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/core/minos-microservice-transactions/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
Oops, something went wrong.