From e5f71f51fbc03caebee3ab805804888a286a3fd1 Mon Sep 17 00:00:00 2001 From: Vitaly Antonenko Date: Thu, 31 Jul 2025 16:30:34 +0300 Subject: [PATCH] ci: add TIOBE quality checks workflow This commit introduces a new GitHub Actions workflow to perform static code analysis using TIOBE Quality Checks monthly. --- .github/workflows/tiobe-tics.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/tiobe-tics.yml diff --git a/.github/workflows/tiobe-tics.yml b/.github/workflows/tiobe-tics.yml new file mode 100644 index 00000000..f0467bca --- /dev/null +++ b/.github/workflows/tiobe-tics.yml @@ -0,0 +1,22 @@ +name: TIOBE Quality Checks +on: + workflow_dispatch: + schedule: + - cron: '0 7 1 * *' + +jobs: + build: + runs-on: [self-hosted, amd64, tiobe, noble] + steps: + - name: Checkout the project + uses: actions/checkout@v4 + + - name: Run TICS analysis with github-action + uses: tiobe/tics-github-action@v3 + with: + mode: qserver + project: sqlair + branchdir: . + viewerUrl: https://canonical.tiobe.com/tiobeweb/TICS/api/cfg?name=GoProjects + ticsAuthToken: ${{ secrets.TICSAUTHTOKEN }} + installTics: true