Skip to content

Commit c25317a

Browse files
committed
Add C workflow
1 parent 9a8f5c2 commit c25317a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/main.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,15 @@ jobs:
8080
- name: Run PHP-CS-Fixer, version ${{ env.PHP_CS_FIXER_VERSION }}
8181
run: |
8282
php-cs-fixer fix --diff --dry-run --verbose
83+
84+
c:
85+
name: Build and test C version
86+
runs-on: ubuntu-latest
87+
88+
steps:
89+
- name: Checkout
90+
uses: actions/checkout@v2
91+
92+
- name: Build and test
93+
run: |
94+
make -C example/ test

0 commit comments

Comments
 (0)