forked from mzmine/mzmine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
23 lines (23 loc) · 753 Bytes
/
action.yml
File metadata and controls
23 lines (23 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: "Hercules Insights matplotlib fix"
description: "Run various Git history analyses with src-d/hercules"
author: "source{d}"
inputs:
args:
description: "hercules command line arguments"
required: false
default: "--burndown --burndown-people --devs --couples --languages java"
runs:
using: "docker"
image: "docker://srcd/hercules:latest"
args:
- "/bin/bash"
- "-c"
- "pip install 'matplotlib==3.2.0'
&& hercules ${{ inputs.args }} --pb . | labours -m all -f pb --disable-projector -o hercules_charts
&& cd hercules_charts
&& tar -cf ../hercules_charts.tar * ../hercules_charts_*
&& cd ..
&& rm -r hercules_charts"
branding:
color: purple
icon: bar-chart-2