mirror of
https://github.com/maplibre/martin.git
synced 2024-12-22 06:11:33 +03:00
aabcb0aa0a
I'd like to add optional rustls support for SQLx. This PR implements the required features, but tests using `--all-features` fail, because runtime selection features are not additive. I didn't find a solution apart from avoiding `--all-features`. --------- Co-authored-by: Yuri Astrakhan <YuriAstrakhan@gmail.com>
30 lines
520 B
YAML
30 lines
520 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
|