Skip to content

Added REST API guide #279

Added REST API guide

Added REST API guide #279

Workflow file for this run

name: Benchmark
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [macos-latest]
dotnet: [6.0.200]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Install wrk
run: brew install wrk
- name: Restore tools
run: dotnet tool restore
- name: Restore packages
run: dotnet paket restore
- name: Run benchmark
run: cd benchmark && ./test.sh