Fix Qdrant test (#25) #133
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
name: Run tests | |
on: | |
[push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
PACKAGE_NAME: chidori | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
target: [x86_64] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
rustflags: "" | |
- name: Test Prompt Graph Core | |
run: cargo test | |
working-directory: toolchain/prompt-graph-core | |
- name: Test Prompt Graph Exec | |
run: cargo test | |
working-directory: toolchain/prompt-graph-exec | |
- name: Test Chidori | |
run: cargo test | |
working-directory: toolchain/chidori | |