Regenerate 3.8.3 files with core as addon #325
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: Tidy | |
| on: | |
| push: | |
| # Run every time a shell script changes | |
| paths: | |
| - '**/*.sh' | |
| pull_request: {} | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: ShellCheck | |
| run: | | |
| sudo apt-get install -y shellcheck | |
| make lint | |