Add GitHub Actions (#1193)

This commit is contained in:
Roelof
2020-03-17 11:49:24 +01:00
committed by GitHub
parent 07615a0736
commit 4a3195529c
2 changed files with 80 additions and 0 deletions

23
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: "Run tests"
on:
- push
- pull_request
env:
FORMAT_FILE: README.md
jobs:
test:
name: 'Validate README.md'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Validate Markdown format
run: build/validate_format.py ${FORMAT_FILE}
- name: Validate pull request changes
run: build/github-pull.sh ${{ github.repository }} ${{ github.event.pull_request.number }} ${FORMAT_FILE}
if: github.event_name == 'pull_request'