draft of rev 3.0, cleanup of repo from not fully open source libs #155
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: Unit Tests | |
on: [push] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build and run tests | |
run: | | |
sudo pip install pytest pytest-html | |
cd ./ContinuousIntegration | |
chmod +x ./run_unit_tests.sh | |
./run_unit_tests.sh | |
- name: Archive component test results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: Report for Unit Tests | |
path: ./Test/UnitTest/test_*/*xml |