docs: 文案对齐 landing page——tagline、四阶段十二步、三样交付物 #34
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: shellcheck | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'sofagent/scripts/**/*.sh' | |
| - 'sofagent-lite/**/*.sh' | |
| - 'scripts/**/*.sh' | |
| - 'tools/**/*.sh' | |
| - 'FDE/**/*.sh' | |
| - '.github/workflows/shellcheck.yml' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'sofagent/scripts/**/*.sh' | |
| - 'sofagent-lite/**/*.sh' | |
| - 'scripts/**/*.sh' | |
| - 'tools/**/*.sh' | |
| - 'FDE/**/*.sh' | |
| - '.github/workflows/shellcheck.yml' | |
| jobs: | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run ShellCheck | |
| uses: ludeeus/action-shellcheck@master | |
| with: | |
| severity: warning | |
| env: | |
| SHELLCHECK_OPTS: -s bash -e SC2086 -e SC2155 -e SC2034 -e SC1090 -e SC1091 |