summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml26
1 files changed, 24 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6073ba29bf..a4565e5499 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -13,6 +13,30 @@ on: [pull_request, push]
# - make="make -s"
jobs:
+ check_update:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: config
+ run: ./config --strict-warnings && perl configdata.pm --dump
+ - name: make build_generated
+ run: make -s build_generated
+ - name: make update
+ run: make -s update
+ - name: git diff
+ run: git diff --exit-code
+
+ check_docs:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: config
+ run: ./config --strict-warnings && perl configdata.pm --dump
+ - name: make build_generated
+ run: make -s build_generated
+ - name: make doc-nits
+ run: make doc-nits
+
basic_gcc:
runs-on: ubuntu-latest
steps:
@@ -23,8 +47,6 @@ jobs:
run: make -s -j4
- name: make test
run: make test
- - name: make doc-nits
- run: make doc-nits
basic_clang:
runs-on: ubuntu-latest