Client Side Tools and Coverage #54
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Client Side Tools and Coverage | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: [ '*' ] | |
| merge_group: | |
| types: | |
| - checks_requested # this is the one that's isn't triggering Codacy analysis | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.11 # Choose your Python version | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get -qq update | |
| pip3 install coverage | |
| pip3 install pytest | |
| - name: Run tests and collect coverage | |
| run: | | |
| coverage run -m pytest | |
| continue-on-error: true | |
| - name: Generate coverage XML report | |
| run: | | |
| coverage xml -o coverage.xml | |
| - name: Upload coverage report to Codacy | |
| env: | |
| CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
| run: | | |
| bash <(curl -Ls https://coverage.codacy.com/get.sh) report -r coverage.xml | |