From fba331bbf8058f568c784d1f7968523b6163766c Mon Sep 17 00:00:00 2001 From: dbarzin Date: Tue, 14 Feb 2023 20:19:15 +0100 Subject: [PATCH] work on CI --- .github/workflows/ci.yml | 35 ++++++++++++----------------------- 1 file changed, 12 insertions(+), 23 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dd29de6..775027e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,32 +9,21 @@ on: jobs: - deploy: + qa: + name: Quality check runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 + - uses: actions/checkout@v1 - - name: Install Pandora-box - run: | - sudo ./install.sh - - - name: Start Pandora-box - run: | - cd pandora-box && ./pandora-box.py - - - name: Upload Screenshots - if: failure() - uses: actions/upload-artifact@v2 + - name: Set up Python + uses: actions/setup-python@master with: - name: screenshots - path: tests/Browser/screenshots + python-version: 3.8 - - name: Upload Console Logs - if: failure() - uses: actions/upload-artifact@v2 + - name: Wemake Python Stylguide + uses: wemake-services/wemake-python-styleguide@0.13.4 + continue-on-error: true with: - name: console - path: tests/Browser/console - + reporter: 'github-pr-review' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}