Skip to content

Bump github/codeql-action from 3.25.5 to 3.25.6 #304

Bump github/codeql-action from 3.25.5 to 3.25.6

Bump github/codeql-action from 3.25.5 to 3.25.6 #304

Workflow file for this run

---
name: C
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0'
workflow_dispatch:
permissions: {}
jobs:
build:
name: Build with GCC
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Install clang-tidy
run: |
sudo apt update -y
sudo apt install clang-tidy
- name: Run clang-tidy
run: clang-tidy *.c
- name: Build
run: make all