Skip to content

chore(deps): bump anyhow from 1.0.86 to 1.0.92 #35

chore(deps): bump anyhow from 1.0.86 to 1.0.92

chore(deps): bump anyhow from 1.0.86 to 1.0.92 #35

Workflow file for this run

name: bench
on:
push:
paths-ignore:
- '**/*.md'
branches:
- main
pull_request:
paths-ignore:
- '**/*.md'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.event.repository.name }}
CARGO_TERM_COLOR: always
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup dummy Git identity
run: git config --global user.name "dummy" && git config --global user.email "[email protected]"
- name: Install ripgrep
run: sudo apt-get install ripgrep
- name: Run benchmarks
run: make bench
linux-libgit2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install libgit2
run: sudo apt-get install -y libgit2-dev
- name: Install ripgrep
run: sudo apt-get install ripgrep
- name: Setup dummy Git identity
run: git config --global user.name "dummy" && git config --global user.email "[email protected]"
- name: Run benchmarks
run: make bench-git