feat: add behavior tests scripts #8
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: OVFS Behavior Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Behavior Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Behavior Test | |
run: | | |
chmod +x ./build_and_run_ovfs.sh | |
chmod +x ./install_and_run_vm.sh | |
nohup ./build_and_run_ovfs.sh & | |
nohup ./install_and_run_vm.sh & | |
pip install paramiko | |
python behavior_test.py | |
working-directory: .github/scripts |