diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 2c46f6a..be88133 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -106,7 +106,7 @@ jobs: name: results path: out - - name: Write results to Pull Request and Summarry + - name: Write results to Pull Request and Summary if: always() && github.event_name == 'pull_request' uses: joonvena/robotframework-reporter-action@v2.1 with: @@ -114,7 +114,7 @@ jobs: gh_access_token: ${{ secrets.GITHUB_TOKEN }} only_summary: false - - name: Write results to Summarry + - name: Write results to Summary if: always() && github.event_name != 'pull_request' uses: joonvena/robotframework-reporter-action@v2.1 with: @@ -122,6 +122,11 @@ jobs: gh_access_token: ${{ secrets.GITHUB_TOKEN }} only_summary: true + - name: Run scorometer tests + run: | + pip install -r scorometer/requirements.txt + cd scorometer/tests && ./runner.sh + - name: Remove .env && stop the service run: docker-compose down && rm .env