mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 12:51:37 +03:00
22 lines
378 B
YAML
22 lines
378 B
YAML
name: Benchmark
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
paths-ignore: ['**.md']
|
|
push:
|
|
branches: [main, v0.6]
|
|
paths-ignore: ['**.md']
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check_benchmark:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Check benchmark
|
|
run: cargo bench
|