Bump pytest from 8.4.1 to 8.4.2 #119
Workflow file for this run
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: Job Summary | |
| on: | |
| push: | |
| schedule: | |
| - cron: "0 0 1 * *" # Midnight every month (UTC) | |
| workflow_dispatch: | |
| jobs: | |
| run: | |
| name: Run | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Single-line using echo | |
| run: | | |
| echo '# A first-level heading' >> "${GITHUB_STEP_SUMMARY}" | |
| echo '## A second-level heading' >> "${GITHUB_STEP_SUMMARY}" | |
| echo '### A third-level heading' >> "${GITHUB_STEP_SUMMARY}" | |
| - name: Multi-line using heredoc | |
| run: | | |
| cat << 'EOF' >> "${GITHUB_STEP_SUMMARY}" | |
| **Bold** | |
| *Italic* | |
| ~Strikethru~ | |
| Subscript<sub>abc</sub> | |
| Superscript<sup>xyz</sup> | |
| <ins>Underline</ins> | |
| List | |
| - Item 1 | |
| - Item 2 | |
| - Item 3 | |
| :grinning: :thumbsup: :rocket: :green_circle: :red_circle: | |
| > Block quote | |
| > [!NOTE] | |
| > Useful information. | |
| > [!TIP] | |
| > Helpful advice. | |
| > [!IMPORTANT] | |
| > Key information. | |
| > [!WARNING] | |
| > Urgent info. | |
| > [!CAUTION] | |
| > Be careful. | |
| [GitHub](https://github.com) | |
| EOF |