Fix bm25 scaling of terms based on their idf (#163) #12
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
# Based on: https://github.com/clap-rs/clap/blob/master/.github/workflows/ci.yml | |
name: CI | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
push: | |
env: | |
RUST_BACKTRACE: 1 | |
CARGO_TERM_COLOR: always | |
CLICOLOR: 1 | |
jobs: | |
test: | |
name: Test | |
strategy: | |
matrix: | |
build: [linux] | |
include: | |
- build: linux | |
os: ubuntu-latest | |
rust: "stable" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ matrix.rust }} | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install liburing | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y liburing-dev | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-about | |
- name: Run CI | |
run: ./scripts/ci/all | |
- name: Test | |
run: cargo test |