Skip to content

Use reqwest as the request client backend. #1644

Use reqwest as the request client backend.

Use reqwest as the request client backend. #1644

Workflow file for this run

name: Tests
on:
pull_request:
push:
# trying and staging branches are for BORS config
branches:
- trying
- staging
- main
env:
CARGO_TERM_COLOR: always
jobs:
integration_tests:
# Will not run if the event is a PR to bump-meilisearch-v* (so a pre-release PR)
# Will still run for each push to bump-meilisearch-v*
if: github.event_name != 'pull_request' || !startsWith(github.base_ref, 'bump-meilisearch-v')
runs-on: ubuntu-latest
name: integration-tests
strategy:
matrix:
feature:
- isahc-static-curl
# - isahc-static-ssl
- reqwest-native-tls
# - reqwest-rustls
steps:
- uses: actions/checkout@v4
- name: Install clippy
run: rustup component add clippy
- name: Run linter (clippy)
run: cargo clippy --all-targets --no-default-features --features ${{ matix.feature }} -- -D warnings

Check failure on line 34 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 34, Col: 14): Unrecognized named-value: 'matix'. Located at position 1 within expression: matix.feature .github/workflows/tests.yml (Line: 38, Col: 14): Unrecognized named-value: 'matix'. Located at position 1 within expression: matix.feature
- name: Meilisearch (latest version) setup with Docker
run: docker run -d -p 7700:7700 getmeili/meilisearch:latest meilisearch --no-analytics --master-key=masterKey
- name: Run tests
run: cargo test --features ${{ matix.feature }} --no-default-features
formatter:
name: rust-format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run formatter
run: cargo fmt --all -- --check
readme_check:
name: readme-check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check the README.md file is up-to-date
run: sh scripts/check-readme.sh
wasm_build:
name: wasm-build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
rustup target add wasm32-unknown-unknown
cargo check -p web_app --target wasm32-unknown-unknown
yaml-lint:
name: Yaml linting check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Yaml lint check
uses: ibiqlik/action-yamllint@v3
with:
config_file: .yamllint.yml