Update CODEOWNERS (#406) #720
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: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| - release/** | |
| jobs: | |
| check-solidity-formatting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: Install Foundry | |
| uses: onbjerg/foundry-toolchain@v1 | |
| with: | |
| version: stable | |
| - name: Format Solidity files | |
| working-directory: ./ | |
| run: make fmt | |
| - name: Check Solidity formatting | |
| run: | | |
| if [ "$(git diff --ignore-space-at-eol src | wc -l)" -gt "0" ]; then | |
| echo "Detected uncommitted changes after formatting. See status below:" | |
| git diff | |
| exit 1 | |
| fi | |
| markdown-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: celestiaorg/.github/.github/actions/[email protected] |