Update Konflux references #569
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: "Integration tests" | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| integration-tests: | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: dorny/paths-filter@v3 | |
| id: filter | |
| with: | |
| filters: | | |
| notdocs: | |
| - '!.spelling' | |
| - '!README.md' | |
| - '!docs/**' | |
| - name: Setup all dependencies | |
| if: ${{ steps.filter.outputs.notdocs == 'true' }} | |
| uses: ./.github/actions/setup-dependencies | |
| with: | |
| setup_podman4: yes | |
| - name: Running Integration tests | |
| if: ${{ steps.filter.outputs.notdocs == 'true' }} | |
| run: make integration-test VERBOSE=true | |