Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmanpreet Kaur committed Sep 18, 2024
1 parent 6f846e9 commit 22eac18
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
test_client_advisor:
name: Client Advisor Tests
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand Down Expand Up @@ -48,9 +49,17 @@ jobs:
ClientAdvisor/App/frontend/coverage/
ClientAdvisor/App/frontend/coverage/lcov-report/
# Trigger only on changes within the ClientAdvisor folder
# This will only run the job if files in ClientAdvisor/ have been changed
strategy:
matrix:
include:
- folder: 'ClientAdvisor/**'

test_research_assistant:
name: Research Assistant Tests
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand Down Expand Up @@ -81,3 +90,10 @@ jobs:
path: |
ResearchAssistant/App/frontend/coverage/
ResearchAssistant/App/frontend/coverage/lcov-report/
# Trigger only on changes within the ResearchAssistant folder
# This will only run the job if files in ResearchAssistant/ have been changed
strategy:
matrix:
include:
- folder: 'ResearchAssistant/**'

0 comments on commit 22eac18

Please sign in to comment.