rm partially ported #16
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: VFS component test | |
on: | |
push: | |
branches: ['main'] | |
paths: ['storage/vfs*', 'tests/vfs.cpp'] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Git Sumbodule Update | |
run: git submodule update | |
- name: build test | |
run: make test_vfs | |
- name: run test | |
run: chmod +x test_vfs && ./test_vfs |