Create e2e_test.yml #141
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_test | |
on: push | |
jobs: | |
unit_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: installing requirements | |
run: | | |
sudo make requirements/unit-test USR_DIR="/usr/local" | |
- name: running unit tests | |
run: | | |
make unit-test USR_DIR="/usr/local" | |