-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
43 changed files
with
4,622 additions
and
159 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Basic CI task for development and production. It assures that code is kept | ||
# unit-tested. Test coverage is not checked. | ||
|
||
name: Quality Gate -> Unit Tests on Development Environment | ||
on: | ||
push: | ||
branches: [ develop ] | ||
pull_request: | ||
branches: [ develop, main ] | ||
|
||
jobs: | ||
|
||
unit-tests: | ||
runs-on: ubuntu-latest | ||
name: Run unit tests | ||
steps: | ||
- name: Check-out last commit | ||
uses: actions/checkout@v2 | ||
- name: Build docker DEV image | ||
run: make build-dev-env | ||
- name: Run unit tests | ||
run: make run-unit-tests | ||
|
||
lint-check: | ||
runs-on: ubuntu-latest | ||
name: Run lint check | ||
steps: | ||
- name: Check-out last commit | ||
uses: actions/checkout@v2 | ||
- name: Build docker DEV image | ||
run: make build-dev-env | ||
- name: Run lint check | ||
run: make run-lint-check | ||
|
||
docker-build-prod: | ||
needs: [unit-tests, lint-check] | ||
runs-on: ubuntu-latest | ||
name: Build Docker Production Image (Test) | ||
steps: | ||
- name: Check-out last commit | ||
uses: actions/checkout@v2 | ||
- name: Use example .env file | ||
run: cat ./app/.env.example | sed 's/ENVIRONMENT=development/ENVIRONMENT=production/' > ./app/.env | ||
- name: Build PROD instance (image) | ||
run: make build-prod-env |
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,3 +1,10 @@ | ||
### macOS ### | ||
# General | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
|
||
# Icon must end with two \r | ||
Icon | ||
|
||
|
Oops, something went wrong.