cmdCompass icon indicating copy to clipboard operation
cmdCompass copied to clipboard

[CI/CD] Setup Github Actions to automatically run unittest with each commit

Open johnwangwyx opened this issue 9 months ago • 0 comments

Unittests are currently in ./test directory and can be run by:

python -m unittest discover -s "./test" -t "./" (i.e running tests in ./test from project's root)

We can setup a single GitHub Action to run the tests on Mac, Windows, and Linux (The three supported OS) with runs-on: ${{ matrix.os }}.

johnwangwyx avatar May 24 '24 01:05 johnwangwyx