Skip to content

Update Fitness.c

Update Fitness.c #60

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '30 00 * * *'
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
permissions:
security-events: write
packages: read
actions: read
contents: read
strategy:
fail-fast: false
matrix:
include:
- language: c-cpp
build-mode: manual # Changed from autobuild to manual
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
# Install GCC and other dependencies if necessary
- if: matrix.build-mode == 'manual'
name: Install build dependencies
run: |
set -e
sudo apt-get update
sudo apt-get install -y gcc
#Error debugging
- name: Show Build Logs
if: failure()
run: cat build.log || echo "No build log available."
# Manual build step for C/C++ projects
- if: matrix.build-mode == 'manual'
name: Build and Run C/C++ code
shell: bash
run: |
gcc AutoLLgeneration.c -o t
./t # Make sure this step is appropriate for your needs
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"