git-perf 0.15.4

Track, plot, and statistically validate simple measurements using git-notes for storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: 'Install git-perf'
description: 'Install git-perf binary'
inputs:
  release:
    description: 'release to install'
    required: false
    default: 'latest'
runs:
  using: "composite"
  steps:
    - id: install
      run: |
        curl --proto '=https' --tlsv1.2 -LsSf https://github.com/kaihowl/git-perf/releases/download/v0.15.3/git-perf-installer.sh | sh
        export PATH=$HOME/.cargo/bin:$PATH
        git-perf --help
        echo "$HOME/.cargo/bin" >> $GITHUB_PATH
      shell: bash