Rename and document the MDB_NOTLS
feature
#313
Workflow file for this run
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
--- | |
on: [pull_request] | |
name: Cargo test | |
jobs: | |
check_lmdb: | |
name: Test the heed project with LMDB | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
include: | |
- os: ubuntu-latest | |
artifact_name: meilidb-http | |
asset_name: meilidb-http-linux-amd64 | |
- os: windows-latest | |
artifact_name: meilidb-http.exe | |
asset_name: meilidb-http-windows-amd64 | |
- os: macos-latest | |
artifact_name: meilidb-http-macos-amd64 | |
asset_name: meilidb-http-macos-amd64 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Run cargo test | |
run: | | |
cd heed | |
cargo clean | |
cargo test --features 'lmdb serde-json' --no-default-features |