aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fischer@muhq.space>2021-04-28 18:11:24 +0200
committerFlorian Fischer <florian.fischer@muhq.space>2021-04-28 18:11:24 +0200
commitbe1e08c900fe53ebe4dfdc458f93081a4c02ed64 (patch)
tree4b610dacb2cf21fc42660c3c72688de1aab58f98
parent4bbe2df3a7c47f3736acac59090772cab83c8e61 (diff)
downloadvis-spellcheck-be1e08c900fe53ebe4dfdc458f93081a4c02ed64.tar.gz
add simple github workflow running static analysis
-rw-r--r--.github/workflows/check.yml39
1 files changed, 39 insertions, 0 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml
new file mode 100644
index 0000000..fb5ddf2
--- /dev/null
+++ b/.github/workflows/check.yml
@@ -0,0 +1,39 @@
+# This is a basic workflow to help you get started with Actions
+
+name: CI
+
+# Controls when the action will run.
+on:
+ # Triggers the workflow on push or pull request events but only for the master branch
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+ # Allows you to run this workflow manually from the Actions tab
+ workflow_dispatch:
+
+# A workflow run is made up of one or more jobs that can run sequentially or in parallel
+jobs:
+ # This workflow contains a single job called "build"
+ check:
+ # The type of runner that the job will run on
+ runs-on: ubuntu-latest
+
+ # Steps represent a sequence of tasks that will be executed as part of the job
+ steps:
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
+ - uses: actions/checkout@v2
+
+ - name: install dependencies
+ run: |
+ sudo apt-get -y install luarocks
+ sudo luarocks install luacheck
+ # install lua-format when luarocks > 3 is in ubuntu
+ # sudo luarocks install --server=https://luarocks.org/dev luaformatter
+
+ # - name: check format
+ # run: make check-format
+
+ - name: static analysis
+ run: make check-luacheck