Bump org.junit.jupiter:junit-jupiter-api from 6.0.1 to 6.0.2 #685
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: Continuous Integration | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install tmt | |
| run: pipx install tmt | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| - name: Build local image | |
| run: ./ci_test.sh build-local-image | |
| - name: Set up test environment | |
| run: ./ci_test.sh prepare | |
| - name: Execute tests | |
| run: ./ci_test.sh execute |