mirror of
https://github.com/maplibre/martin.git
synced 2024-12-27 00:44:31 +03:00
b147c27380
This cleans up the code a bit, making all crates to be on the same level.
30 lines
516 B
YAML
30 lines
516 B
YAML
name: Benchmark
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
paths-ignore:
|
|
- '**.md'
|
|
- 'demo/**'
|
|
- 'docs/**'
|
|
- 'homebrew-formula/**'
|
|
push:
|
|
branches: [main]
|
|
paths-ignore:
|
|
- '**.md'
|
|
- 'demo/**'
|
|
- 'docs/**'
|
|
- 'homebrew-formula/**'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check_benchmark:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Check benchmark
|
|
run: cargo bench
|