Skip to content

Commit

Permalink
added correlations as separate workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
amygutierrez committed Jul 20, 2023
1 parent 7fa7093 commit 432cfc5
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/regression_correlations.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Run Regression Test Correlations

on:
workflow_call:
secrets:
SSH_PRIVATE_KEY:
required: true
SSH_USER:
required: true
SSH_HOST:
required: true
SSH_WORK_DIR:
required: true

jobs:
test:
name: Regression Correlations
runs-on: ubuntu-latest
steps:
- name: Install SSH Keys
run: |
mkdir -p ~/.ssh/
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan -H -t rsa ${{ secrets.SSH_HOST }} > ~/.ssh/known_hosts
- name: Cleanup SSH
run: |
rm -rf ~/.ssh
#- uses: actions/upload-artifact@v3
# if: always()
# with:
# name: logs
# path: output/*/*/log/

0 comments on commit 432cfc5

Please sign in to comment.