Skip to content

Merge pull request #10 from thomasleplus/dependabot/github_actions/gi… #261

Merge pull request #10 from thomasleplus/dependabot/github_actions/gi…

Merge pull request #10 from thomasleplus/dependabot/github_actions/gi… #261

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@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- 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