Skip to content

add test for detected trilogy compile panic #700

add test for detected trilogy compile panic

add test for detected trilogy compile panic #700

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-19
- name: Run clang-format
run: clang-format-19 --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: Install clang-tidy
run: |
sudo apt-get update
sudo apt-get install clang-tidy-19
- name: Run clang-tidy
run: clang-tidy-19 *.{c,h} --
working-directory: trilogy-llvm/core