Merge pull request #904 from robertbaldyga/actions-functional-tests-m… #1
This file contains hidden or 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: Tests Status | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| run-tests: | |
| name: Tests Status | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: 'Set up Python' | |
| uses: actions/setup-python@v5 | |
| - name: 'Build OCF library' | |
| run: cd tests/functional; make -j | |
| - name: 'Execute tests' | |
| run: cd tests/functional; pytest |