mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-07-28 13:41:17 -07:00
Test Staging Data Backend (#1282)
* Test Staging Data Backend * action updates
This commit is contained in:
parent
82809a5123
commit
59862a098e
3 changed files with 3 additions and 48 deletions
4
.github/workflows/deploy_be_staging.yml
vendored
4
.github/workflows/deploy_be_staging.yml
vendored
|
@ -1,9 +1,9 @@
|
||||||
name: Deploy Frontend staging
|
name: Deploy Backend staging
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
paths:
|
paths:
|
||||||
- "data/*"
|
- "data/**"
|
||||||
env:
|
env:
|
||||||
PR_NUMBER: ${{github.event.pull_request.number}}
|
PR_NUMBER: ${{github.event.pull_request.number}}
|
||||||
SHA_NUMBER: ${{github.event.pull_request.head.sha}}
|
SHA_NUMBER: ${{github.event.pull_request.head.sha}}
|
||||||
|
|
45
.github/workflows/score-checks.yml
vendored
45
.github/workflows/score-checks.yml
vendored
|
@ -1,45 +0,0 @@
|
||||||
name: Score Checks
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
branches: [main] # runs on any PR against main
|
|
||||||
paths:
|
|
||||||
- "data/**"
|
|
||||||
jobs:
|
|
||||||
generate-score:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
working-directory: data/data-pipeline
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
python-version: [3.9]
|
|
||||||
steps:
|
|
||||||
- name: Checkout source
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: Print variables to help debug
|
|
||||||
uses: hmarr/debug-action@v2
|
|
||||||
- name: Set up Python ${{ matrix.python-version }}
|
|
||||||
uses: actions/setup-python@v2
|
|
||||||
with:
|
|
||||||
python-version: ${{ matrix.python-version }}
|
|
||||||
- name: Setup Poetry
|
|
||||||
uses: Gr1N/setup-poetry@v7
|
|
||||||
- name: Print poetry version
|
|
||||||
run: poetry --version
|
|
||||||
- name: Install dependencies
|
|
||||||
run: poetry install
|
|
||||||
- name: Configure AWS Credentials
|
|
||||||
uses: aws-actions/configure-aws-credentials@v1
|
|
||||||
with:
|
|
||||||
aws-access-key-id: ${{ secrets.DATA_DEV_AWS_ACCESS_KEY_ID }}
|
|
||||||
aws-secret-access-key: ${{ secrets.DATA_DEV_AWS_SECRET_ACCESS_KEY }}
|
|
||||||
aws-region: us-east-1
|
|
||||||
- name: Generate Score
|
|
||||||
run: |
|
|
||||||
poetry run python3 data_pipeline/application.py score-full-run
|
|
||||||
- name: Generate Score Post
|
|
||||||
run: |
|
|
||||||
poetry run python3 data_pipeline/application.py generate-score-post -s aws
|
|
||||||
- name: Generate Score Geo
|
|
||||||
run: |
|
|
||||||
poetry run python3 data_pipeline/application.py geo-score
|
|
|
@ -104,7 +104,7 @@ class ExtractTransformLoad:
|
||||||
# of the instance which is often a child class.
|
# of the instance which is often a child class.
|
||||||
tmp_path = self.DATA_PATH / "tmp" / str(self.__class__.__name__)
|
tmp_path = self.DATA_PATH / "tmp" / str(self.__class__.__name__)
|
||||||
|
|
||||||
# Create directory if it doesn't exist already
|
# Create directory if it doesn't exist
|
||||||
tmp_path.mkdir(parents=True, exist_ok=True)
|
tmp_path.mkdir(parents=True, exist_ok=True)
|
||||||
|
|
||||||
return tmp_path
|
return tmp_path
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue