wip 012 #47
This file contains hidden or 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: Run Unit Tests | |
| on: [push, pull_request, fork, workflow_dispatch] | |
| jobs: | |
| non_sdk_tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Run tests | |
| shell: bash | |
| run: | | |
| echo "Building docker image and running unit tests" | |
| make docker-build | |
| make docker-unit-gha |