Let go of the 1-hour-long network request timeout to avoid frozen projects #14830
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: 🧹 Static Tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - release-** | |
| pull_request: | |
| branches: | |
| - master | |
| - release-** | |
| jobs: | |
| # license_check: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Checkout | |
| # uses: actions/checkout@v6 | |
| # - name: Install Requirements | |
| # run: | | |
| # sudo apt install -y \ | |
| # cpanminus | |
| # cpanm --notest App::Licensecheck | |
| # | |
| # - name: Run License Check | |
| # run: ./scripts/test_licenses.sh | |
| banned_keywords_check: | |
| name: banned keywords check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Run Banned Keywords Test | |
| run: ./scripts/test_banned_keywords.sh | |
| cppcheck-1_9: | |
| name: cpp check | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install Requirements | |
| run: | | |
| sudo apt install -y cppcheck | |
| - name: Run cppcheck test | |
| run: ./scripts/cppcheck.sh |