mirror of
https://github.com/maplibre/martin.git
synced 2024-12-20 13:21:59 +03:00
28 lines
496 B
YAML
28 lines
496 B
YAML
|
name: Benchmark
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
types: [opened, synchronize, reopened]
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
check_benchmark:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout sources
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Install stable toolchain
|
||
|
uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
toolchain: stable
|
||
|
override: true
|
||
|
|
||
|
- name: Check benchmark
|
||
|
uses: actions-rs/cargo@v1
|
||
|
with:
|
||
|
command: bench
|