chore(reconcile): drop legacy code #2853
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
| on: [pull_request] | |
| jobs: | |
| TICS: | |
| name: TICS | |
| runs-on: [self-hosted, linux, amd64, tiobe, jammy] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run Unit Tests (manager app) | |
| run: | | |
| cd github-runner-manager | |
| pip install tox flake8 -r ./requirements.txt | |
| tox -e unit,coverage-report | |
| rm -rf .tox | |
| - name: Run Unit Tests | |
| run: | | |
| pip install tox flake8 -r ./requirements.txt -r ./github-runner-manager/requirements.txt | |
| tox -e unit,coverage-report | |
| rm -rf .tox | |
| - name: TICS GitHub Action | |
| uses: tiobe/tics-github-action@v3 | |
| with: | |
| mode: qserver | |
| project: github-runner-operator | |
| branchdir: ${{ github.workspace }} | |
| viewerUrl: https://canonical.tiobe.com/tiobeweb/TICS/api/cfg?name=default | |
| ticsAuthToken: ${{ secrets.TICSAUTHTOKEN }} | |
| installTics: true | |
| concurrency: | |
| group: tics | |
| cancel-in-progress: false |