Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #55 Enhance recordkeeping of anomaly detection #56

Merged
merged 12 commits into from
Oct 25, 2024
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: ["20.x", "22.x"]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
python: ["3.9", "3.11", "3.12"]
python: ["3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/sam-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
sam build
--use-container
--container-env-var EMCS_API_KEY=${{ secrets.EMCS_API_KEY }}
--container-env-var TRENDDB_HOST=${{ secrets.TRENDDB_HOST }}
--container-env-var TRENDDB_USER=${{ secrets.TRENDDB_USER }}
--container-env-var TRENDDB_PASSWORD=${{ secrets.TRENDDB_PASSWORD }}
--container-env-var TRENDDB=${{ secrets.TRENDDB }}
--container-env-var SAM_STAGE=$GITHUB_REF_NAME
--container-env-var PORTAL_API_URL='https://portal-api.emcs.cucloud.net/'

Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ coverage
*.pyc
.pytest_cache
.aws-sam
*.egg-info/
*.egg-info/
__pycache__
Loading
Loading