Agama assert install progress before timeout loop #135
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: isotovideo | |
# yamllint disable-line rule:truthy | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: "CI: Running isotovideo test" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run isotovideo tests | |
run: make test-isotovideo | |
- name: Error in isotovideo | |
if: ${{ failure() }} | |
run: echo 'isotovideo failed, something modified the default schedule or the output; run locally to find out more.' && exit 1 |