We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 222a937 + 88909a5 commit e1464c6Copy full SHA for e1464c6
.github/workflows/tests-pr.yml
@@ -0,0 +1,21 @@
1
+name: Tests Status
2
+permissions:
3
+ contents: read
4
+ pull-requests: read
5
+on: [pull_request]
6
+jobs:
7
+ run-tests:
8
+ name: Tests Status
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v5
12
+ - name: 'Set up Python'
13
+ uses: actions/setup-python@v5
14
+ - name: Install dependencies
15
+ run: |
16
+ python -m pip install --upgrade pip
17
+ pip install pytest
18
+ - name: 'Build OCF library'
19
+ run: cd tests/functional; make -j
20
+ - name: 'Execute tests'
21
+ run: cd tests/functional; python3 -m pytest
0 commit comments