Implement BTT testing for LibERC20 #86
Workflow file for this run
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: Enforce Solidity comment style | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| pull_request: | |
| types: [opened, synchronize, reopened, edited] | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-sol-comments: | |
| name: Check Solidity comment style | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Make check script executable | |
| run: chmod +x .github/scripts/check-solidity-comments.sh | |
| - name: Run Solidity comment-style check | |
| env: | |
| # Only Solidity files | |
| CHECK_GLOBS: "*.sol" | |
| run: .github/scripts/check-solidity-comments.sh |