Skip to content

Commit c623820

Browse files
committed
github: run C parser on push/PR
This action runs the verification C parser on the main kernel configurations to check that the code is in the C verification subset. Signed-off-by: Gerwin Klein <[email protected]>
1 parent 9f90e39 commit c623820

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/cparser.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright 2021, Proofcraft Pty Ltd
2+
#
3+
# SPDX-License-Identifier: BSD-2-Clause
4+
5+
# Run the verification C parser on the main kernel configurations
6+
#
7+
# See cparser-run/builds.yml in the repo seL4/ci-actions for configs.
8+
9+
name: C Parser
10+
11+
on:
12+
push:
13+
branches: [master]
14+
pull_request:
15+
16+
jobs:
17+
cparser:
18+
name: C Parser
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: seL4/ci-actions/cparser-run@master

0 commit comments

Comments
 (0)