bump to 1.3, document terminal-free run + password + update-in-menu #11
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: Lint | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| swift-format: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| # информационный прогон: показывает замечания стиля, но не валит CI (без --strict) | |
| - name: swift-format lint | |
| run: swift format lint --recursive --configuration .swift-format Sources tests |