Workflow to run syntax test on pull requests

This commit is contained in:
Josef Andersson 2021-10-20 21:04:13 +02:00
parent 35643fc8d4
commit 6dd2bd2120

14
.github/workflows/pull-request.yml vendored Normal file
View file

@ -0,0 +1,14 @@
name: Run syntax test
on:
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
check-syntax-full:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm i chalk
- run: make check_syntax_full