Fix line endings to LF #7
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: STM32 CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: self-hosted | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build STM32 | |
| run: | | |
| cd Debug | |
| make | |
| - name: Make flash script executable | |
| run: chmod +x flash.sh | |
| - name: Flash STM32 | |
| run: ./flash.sh |