Announcement
· Feb 12, 2021

Analyze your open source code for free

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.

Discussion (5)1
Log in or sign up to continue