This repository has been archived by the owner on Aug 31, 2024. It is now read-only.
Fix: rename __NR__Exit to __NR_KExit #37
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI-format-check | |
on: | |
push: | |
paths: | |
- '**.h' | |
- '**.c' | |
- '.github/workflows/check-format.yml' | |
- '.clang-format' | |
pull_request: | |
paths: | |
- '**.h' | |
- '**.c' | |
- '.github/workflows/check-format.yml' | |
- '.clang-format' | |
jobs: | |
check-format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: DoozyX/clang-format-lint-action@v0.12 | |
with: | |
source: '.' | |
extensions: 'h,c' | |
clangFormatVersion: 12 | |
inplace: False |