feat: Allow setting expansions on query and return full response #264
This file contains hidden or 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: Integration | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - "**/src/**" | |
| - "**/Cargo.toml" | |
| - .cargo/** | |
| - .github/workflows/integration.yml | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - "**/src/**" | |
| - "**/Cargo.toml" | |
| - .cargo/** | |
| - .github/workflows/integration.yml | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: Cargo test | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| build: | |
| - x86_64-linux | |
| # - x86_64-windows | |
| include: | |
| - target: x86_64-unknown-linux-gnu | |
| os: ubuntu-latest | |
| build: x86_64-linux | |
| ext: "" | |
| # - target: x86_64-pc-windows-msvc | |
| # os: windows-latest | |
| # build: x86_64-windows | |
| # ext: .exe | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/cache@v4 | |
| continue-on-error: false | |
| with: | |
| path: | | |
| ~/.cargo/bin/ | |
| ~/.cargo/registry/index/ | |
| ~/.cargo/registry/cache/ | |
| ~/.cargo/git/db/ | |
| target/ | |
| key: cargo-test-${{ matrix.build }}-${{ hashFiles('**/Cargo.toml') }} | |
| restore-keys: cargo-test-${{ matrix.build }}- | |
| - uses: dtolnay/rust-toolchain@stable | |
| - run: cargo test --workspace | |
| lint: | |
| name: Cargo check/clippy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy | |
| - run: cargo check | |
| - run: cargo clippy -- -D warnings | |
| fmt: | |
| name: Cargo format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt | |
| - run: cargo fmt --all --verbose --check |