Merge pull request #1269 from jqnatividad/geocode-using-geosuggest-up… #1589
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: qsvdp - Datapusher+ optimized qsv | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
concurrency: | |
group: ci-qsvdp-tests-${{ github.ref }}-1 | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update Rust | |
run: rustup update | |
- name: Setup Rust-cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
key: qsvdp-cache | |
- name: Run tests | |
env: | |
RUSTFLAGS: -C target-feature=+fxsr,+sse,+sse2,+sse3,+ssse3,+sse4.1,+sse4.2,+popcnt,+avx,+fma | |
run: cargo test --verbose --locked --features=datapusher_plus,luau |