From be1e08c900fe53ebe4dfdc458f93081a4c02ed64 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Wed, 28 Apr 2021 18:11:24 +0200 Subject: add simple github workflow running static analysis --- .github/workflows/check.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/check.yml 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 -- cgit