Skip to content

Merge branch 'main' of github.com:foxfriends/trilogy #331

Merge branch 'main' of github.com:foxfriends/trilogy

Merge branch 'main' of github.com:foxfriends/trilogy #331

Workflow file for this run

name: C CI
on: push
jobs:
format:
name: format
runs-on: ubuntu-latest
steps:
- name: Checkout the source code
uses: actions/checkout@v4
- name: Install clang-format
run: |
sudo apt-get update
sudo apt-get install clang-format-18
- name: Run clang-format
run: clang-format-18 --Werror --dry-run *.{c,h}
working-directory: trilogy-llvm/core
check:
name: check
runs-on: ubuntu-latest
steps:
- name: Checkout the source code
uses: actions/checkout@v4
- name: Run clang-tidy
run: clang-tidy-18 *.{c,h} --
working-directory: trilogy-llvm/core