This repository was archived by the owner on Oct 15, 2025. It is now read-only.
Upgrade to mntm 11 #2
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: | |
| - "**" | |
| - "!release" | |
| tags: | |
| - "*" | |
| pull_request: | |
| env: | |
| SET_GH_OUTPUT: 1 | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout code" | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: "Check formatting" | |
| run: ./fbt lint_all |