Skip to content

ci(benchmark): fix script output (#1156) #860

ci(benchmark): fix script output (#1156)

ci(benchmark): fix script output (#1156) #860

Workflow file for this run

name: nilaway
on:
push:
tags:
- v*
branches:
- main
pull_request:
permissions:
contents: read
jobs:
nilaway:
name: nilaway
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 https://github.com/actions/checkout/releases/tag/v6.0.0
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0 https://github.com/actions/setup-go/releases/tag/v6.1.0
with:
go-version: 1.25.x
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1 https://github.com/actions/cache/releases/tag/v5.0.1
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-1.25.x-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-1.25.x-
- name: install nilaway
run: go install go.uber.org/nilaway/cmd/nilaway@latest
- name: run nilaway
run: nilaway ./...