Skip to content

benchmark

benchmark #474

Workflow file for this run

name: benchmark
on:
schedule:
- cron: '0 0 * * *'
push:
branches:
- master
jobs:
benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: '1.18'
check-latest: true
- name: Benchmark
run: |
curl -sL https://github.com/${GITHUB_REPOSITORY}/raw/master/README.md | \
awk '{if($0 ~ "// go test -v"){a=1;b=1};if($0 ~ "```" && b=1){b=0};if (a&&b) {print}}' | \
tee strftime_test.go
export GOPROXY=direct
go mod init main
go get github.com/${GITHUB_REPOSITORY}@master
go get github.com/itchyny/timefmt-go
go get github.com/lestrrat-go/strftime
head -1 strftime_test.go | cut -b3- | sed -E 's#\r##' | bash -xe