Skip to content

run command now functions #186

run command now functions

run command now functions #186

Workflow file for this run

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