mirror of
https://github.com/nineties/planckforth
synced 2024-12-26 21:58:42 +01:00
19 lines
442 B
YAML
19 lines
442 B
YAML
name: benchmark
|
|
|
|
on:
|
|
push:
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: take benchmarks
|
|
run: |
|
|
mkdir -p document
|
|
./benchmark/gendoc.sh | tee document/benchmark.md
|
|
- name: upload to wiki
|
|
uses: SwiftDocOrg/github-wiki-publish-action@v1
|
|
with:
|
|
path: "document"
|
|
env:
|
|
GH_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
|