Create test.txt #4
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: TET Tests | |
on: | |
push: | |
branches: | |
- main # Adjust this branch to your main branch name | |
jobs: | |
test: | |
runs-on: ubuntu-latest # You can change the runner to your preferred OS | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install TET | |
run: | | |
git clone https://github.com/linux-test-project/ltp.git | |
cd ltp | |
make autotools | |
./configure | |
make | |
- name: Run TET Tests | |
run: | | |
cd ltp | |
make -C testcases | |
./testcases/runtest | |