Skip to content

Merge pull request #379 from objectionary/renovate/crate-ci-typos-1.x #364

Merge pull request #379 from objectionary/renovate/crate-ci-typos-1.x

Merge pull request #379 from objectionary/renovate/crate-ci-typos-1.x #364

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Objectionary.com
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: benchmark
'on':
push:
branches:
- master
paths-ignore: [ 'README.md', '.github' ]
concurrency:
group: benchmark-${{ github.ref }}
cancel-in-progress: true
jobs:
benchmark:
timeout-minutes: 15
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
distribution: 'zulu'
java-version: 21
- uses: actions/cache@v5
with:
path: ~/.m2/repository
key: ubuntu-jdk-21-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ubuntu-jdk-21-maven-
- run: .github/benchmark.sh
- uses: peter-evans/create-pull-request@v8
with:
sign-commits: true
branch: benchmark
commit-message: 'new benchmark results'
delete-branch: true
title: 'New benchmarking results'
assignees: yegor256
base: master