diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml new file mode 100644 index 00000000..b5207e21 --- /dev/null +++ b/.github/workflows/run_tests.yml @@ -0,0 +1,24 @@ +name: Run Tests + +on: [push] + +jobs: + build-linux: + runs-on: ubuntu-latest + strategy: + max-parallel: 5 + + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.x' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - name: Run Tests + run: | + python llm_cfg/test_synchromesh.py + python llm_cfg/test_grammar.py diff --git a/requirements.txt b/requirements.txt index 4a6933d2..610b4536 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,3 @@ -certifi @ file:///croot/certifi_1690232220950/work/certifi charset-normalizer==3.2.0 cmake==3.27.2 filelock==3.12.3