feat: [REL-10772] Implement Langchain provider for online evals #185
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: Quality control checks | |
| on: | |
| push: | |
| branches: [ main, 'feat/**' ] | |
| paths-ignore: | |
| - '**.md' # Do not need to run CI for markdown changes. | |
| pull_request: | |
| branches: [ main, 'feat/**' ] | |
| paths-ignore: | |
| - '**.md' | |
| jobs: | |
| linux: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install poetry | |
| uses: abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439 | |
| - name: Install packages | |
| run: make install | |
| - name: Build core package | |
| uses: ./.github/actions/build | |
| with: | |
| package-path: packages/core | |
| - name: Build langchain package | |
| uses: ./.github/actions/build | |
| with: | |
| package-path: packages/langchain | |
| - uses: ./.github/actions/build-docs | |
| - name: Reinstall packages after build | |
| run: make install | |
| - name: Run tests | |
| run: make test | |
| - name: Verify typehints | |
| run: make lint | |
| windows: | |
| runs-on: windows-latest | |
| defaults: | |
| run: | |
| shell: powershell | |
| strategy: | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install poetry | |
| uses: abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439 | |
| - name: Install packages | |
| run: make install | |
| - name: Run tests | |
| run: make test |