mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-05-20 10:10:42 +00:00
25 lines
492 B
YAML
25 lines
492 B
YAML
name: Rust
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
NUM_FUNCTIONAL_TEST_ITERATIONS: 20000
|
|
|
|
jobs:
|
|
functional_test_unsorted:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Run indexing_unsorted
|
|
run: cargo test indexing_unsorted -- --ignored
|
|
functional_test_sorted:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Run indexing_sorted
|
|
run: cargo test indexing_sorted -- --ignored
|
|
|