Update hello.c #55
This file contains 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: TICS run (script) | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/canonical/ticsimg:latest | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.PKGTOKEN }} | |
steps: | |
- name: Checkout the project | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt-get update | |
#- name: Build the project | |
# run: make | |
- name: Run TICS analysis with the script | |
run: | | |
set -x | |
export TICSAUTHTOKEN="${{ secrets.TICSAUTHTOKEN }}" | |
TICSQServer -project testimage -tmpdir /tmp/tics -branchdir . |