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