From aa0c7d962150e38df5feda00c89c42494f722136 Mon Sep 17 00:00:00 2001 From: GitBluub Date: Sun, 2 Apr 2023 02:16:00 +0900 Subject: [PATCH] scorometer test CI --- .github/workflows/CI.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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