Since some months ago we automatized source code analysis for projects on Github, so anyone with an open source project can have its code analyzed with no cost.
You only need to create the file ".github/workflows/objectscript-quality.yml" in your project with following contents:
name: objectscriptquality
on: push
jobs:
linux:
name: Linux build
runs-on: ubuntu-latest
steps:
- name: Execute ObjectScript Quality Analysis
run: wget https://raw.githubusercontent.com/litesolutions/objectscriptquality-jenkins-integration/master/iris-community-hook.sh && sh ./iris-community-hook.sh
That's all!!
Now you only need to wait some minutes to get the results in https://community.objectscriptquality.com.
EDIT:
As for Robert question, I forgot to mention that on first push it can take several minutes (15-20). After that, following pushes takes about 5 minutes to update results.
@Daniel Tamajon
I'm using GitHub in browse to create this project. https://github.com/rcemper/try_embedded_python
How is the quality check started / triggered ?
Is some minutes > 20 minutes ?
Robert, the trigger is run after each commit.
Please, notice there is a misspelling and path must be ".github/workflows"
Thanks! lt was a cut/past from my mail
Sure! It was a typo error on our side. I have updated the article.
Thanks for the fast reaction !!