mirror of
https://github.com/httpie/cli.git
synced 2024-11-07 16:34:35 +01:00
c995fd9b24
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 3 to 4. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
53 lines
1.4 KiB
YAML
53 lines
1.4 KiB
YAML
name: Benchmark
|
|
|
|
on:
|
|
pull_request:
|
|
types: [ labeled ]
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
test:
|
|
if: github.event.label.name == 'benchmark'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.9"
|
|
|
|
- id: benchmarks
|
|
name: Run Benchmarks
|
|
run: |
|
|
python -m pip install pyperf>=2.3.0
|
|
python extras/profiling/run.py --fresh --complex --min-speed=6 --file output.txt
|
|
body=$(cat output.txt)
|
|
body="${body//'%'/'%25'}"
|
|
body="${body//$'\n'/'%0A'}"
|
|
body="${body//$'\r'/'%0D'}"
|
|
echo "::set-output name=body::$body"
|
|
|
|
- name: Find Comment
|
|
uses: peter-evans/find-comment@v2
|
|
id: fc
|
|
with:
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
comment-author: 'github-actions[bot]'
|
|
body-includes: '# Benchmarks'
|
|
|
|
- name: Create or update comment
|
|
uses: peter-evans/create-or-update-comment@v2
|
|
with:
|
|
comment-id: ${{ steps.fc.outputs.comment-id }}
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
body: |
|
|
# Benchmarks
|
|
${{ steps.benchmarks.outputs.body }}
|
|
edit-mode: replace
|
|
|
|
- uses: actions-ecosystem/action-remove-labels@v1
|
|
with:
|
|
labels: benchmark
|