successfully eliminated direct references to python lib #185
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 Chidori Prompt Format | |
run: cargo test | |
working-directory: toolchain/chidori-prompt-format | |
- name: Test Chidori Static Analysis | |
run: cargo test | |
working-directory: toolchain/chidori-static-analysis | |
- name: Test Chidori Core | |
run: cargo test | |
working-directory: toolchain/chidori-core | |