feat: add lab_material 1-15 block reipes and some roof recipes #25
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: 运行 check_blocks.py | |
| on: | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| run-python: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 检出仓库代码 | |
| uses: actions/checkout@v3 | |
| - name: 设置 Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.9' | |
| - name: 运行 Python 脚本 | |
| run: python3 check_blocks.py | |
| - name: 上传报告作为工件 | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: block-check-report | |
| path: block_check_report.md | |
| if-no-files-found: warn |