Skip to content

Commit

Permalink
Add TICS coverage (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
carkod authored Jun 12, 2024
1 parent bc985ad commit 4db1684
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/tics-coverage.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Upload TICS report
on:
push:
branches:
- main

jobs:
TICS:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install
run: yarn install --immutable
- run: yarn test --coverage.enabled true
- name: Upload coverage report
if: always()
uses: actions/upload-artifact@v4
with:
name: ubuntu-security-api-coverage
path: coverage
- name: Produce TICS report
shell: bash
run: |
set -x
export TICSAUTHTOKEN=${{ secrets.TICS_AUTH_TOKEN }}
curl --silent --show-error "https://canonical.tiobe.com/tiobeweb/TICS/api/public/v1/fapi/installtics/Script?cfg=default&platform=linux&url=https://canonical.tiobe.com/tiobeweb/TICS/" > install_tics.sh
. ./install_tics.sh
TICSQServer -project ubuntu-com-security-api -tmpdir /tmp/tics -branchdir .
- name: Upload TICS report
if: always()
uses: actions/upload-artifact@v4
with:
name: tics-report
path: /tmp/tics/ticstmpdir
retention-days: 7

0 comments on commit 4db1684

Please sign in to comment.