Skip to content

Commit

Permalink
Add system tests to CI pipeline: Component and Performance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Dlov507 authored Aug 14, 2024
1 parent 4ad1782 commit bb41883
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,32 @@ jobs:
- name: Push Docker Image
run: bash ci/push-docker.sh


Component-test:
runs-on: ubuntu-latest
needs: [Linting]
steps:
- name: Download code
uses: actions/download-artifact@v4
with:
name: code
path: .
- name: Set up Docker credentials
run: echo "${{ secrets.docker_password }}" | docker login --username ${{ env.docker_username }} --password-stdin
- name: Execute component test
run: bash ci/component-test.sh

Performance-test:
runs-on: ubuntu-latest
needs: [Linting]
steps:
- name: Download code
uses: actions/download-artifact@v4
with:
name: code
path: .
- name: Set up Docker credentials
run: echo "${{ secrets.docker_password }}" | docker login --username ${{ env.docker_username }} --password-stdin
- name: Execute performance test
run: bash ci/performance-test.sh

0 comments on commit bb41883

Please sign in to comment.