22 lines
512 B
YAML
22 lines
512 B
YAML
name: 'Run tests on Windows'
|
|
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Run Python tests - CPU
|
|
shell: bash
|
|
run: |
|
|
echo "::group::Python tests - CPU"
|
|
python -m unittest discover python/tests -v
|
|
echo "::endgroup::"
|
|
|
|
- name: Run CPP tests - CPU
|
|
shell: bash
|
|
env:
|
|
DEVICE: cpu
|
|
run: |
|
|
echo "::group::CPP tests - CPU"
|
|
./build/tests.exe -tce="*gguf*,test random uniform"
|
|
./build/test_teardown.exe
|
|
echo "::endgroup::"
|