-
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.
dev into master See merge request tron/easyquant!16
- Loading branch information
Showing
21 changed files
with
1,109 additions
and
467 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 |
---|---|---|
|
@@ -10,3 +10,8 @@ example_out* | |
*.pyc | ||
|
||
*.Rproj | ||
|
||
.idea/ | ||
dist | ||
easy_quant.egg-info | ||
build |
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,19 @@ | ||
stages: | ||
- test | ||
- deploy | ||
|
||
test_pipeline: | ||
image: condaforge/mambaforge:23.3.1-0 | ||
stage: test | ||
script: | ||
- mamba env create -f environment.yml --prefix conda_env/ | ||
- source /opt/conda/bin/activate conda_env/ | ||
- pip install . | ||
- bash run_test.sh | ||
|
||
deploy-job: # This job runs in the deploy stage. | ||
stage: deploy # It only runs when *both* jobs in the test stage complete successfully. | ||
environment: production | ||
script: | ||
- echo "Deploying application..." | ||
- echo "Application successfully deployed." |
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 @@ | ||
include requirements.txt |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.