Merge pull request #6633 from cylc/prepare-8.4.1 #6225
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: test-tutorial-workflow | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - '8.*.x' | |
| pull_request: | |
| paths-ignore: | |
| - '.github/workflows/*.ya?ml' | |
| - '!.github/workflows/test_tutorial_workflow.yml' | |
| - 'tests/**' | |
| - '**.md' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os: 'ubuntu-latest' | |
| python-version: '3' | |
| - os: 'ubuntu-22.04' | |
| python-version: '3.7' | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 10 | |
| steps: | |
| - name: configure python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: Install docs/tutorial dependencies | |
| uses: cylc/cylc-doc/.github/actions/install-dependencies@master | |
| - name: install cylc-flow | |
| run: pip install .[all] | |
| - name: run tutorial workflow | |
| timeout-minutes: 6 | |
| run: | | |
| mkdir -p "${HOME}/cylc-run" | |
| etc/bin/run-validate-tutorials | |
| - name: debug | |
| if: failure() | |
| run: | | |
| find ~/cylc-run -name job.err -exec cat {} + # cylc error files |