Skip to content

Statistics with lev v3 #100

Statistics with lev v3

Statistics with lev v3 #100

Workflow file for this run

name: CI
run-name: ${{ inputs.workflow_description }}
on:
workflow_dispatch:
inputs:
authorship_analysis:
description: "Enable authorship analysis?"
type: boolean
required: true
default: true
workflow_description:
description: "Workflow's Description"
type: string
required: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Dump debug_mode
run: echo "Is authorship analysis enabled? ${{ inputs.authorship_analysis }}"
shell: bash
- uses: actions/checkout@v2
- name: Install dependencies
run: pip install requests
- name: Collect Workflow Telemetry
uses: runforesight/workflow-telemetry-action@v1
with:
theme: "dark"
- name: Generate report (Statistics)
if: ${{ !inputs.authorship_analysis }}
run: bash ./run.sh
- name: Generate report
if: ${{ inputs.authorship_analysis }}
run: bash ./run_authorship_analysis.sh