Update tg_eigenvector_cent.gsql to add check for divide by zero error #557
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
| # Run the following check(s): | |
| # * checkstyle: Run codestylechecker. | |
| name: Check | |
| on: | |
| push: | |
| branches: | |
| # accept all branches | |
| - '**' | |
| tags: | |
| # ignore all tags (wip, mit, ...) | |
| - '!**' | |
| jobs: | |
| checkstyle: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # - uses: actions/checkout@v2 | |
| # with: | |
| # token: ${{ secrets.QA_TOKEN }} | |
| - uses: actions/cache@v2 | |
| with: | |
| path: | | |
| ~/.gradle/caches | |
| ~/.gradle/wrapper | |
| key: ${{ runner.os }}-${{ hashFiles('**/build.gradle', 'gradle.properties') }} | |
| # - uses: actions/setup-java@v1 | |
| # with: | |
| # java-version: '11.0.10' | |
| # - name: Run codestylechecker | |
| # run: GLEPATH=$(pwd); source tools/scripts/bash_functions && codestylechecker |