Lint 4e40c0f6d54dfe088c14ccbff5fe05873bae7079 #41
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 | |
| run-name: Lint ${{github.sha}} | |
| on: | |
| push: | |
| branches: ["**"] | |
| pull_request: | |
| branches: ["**"] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - name: Build Docker container for lint | |
| run: docker build -t usmile-lint -f Dockerfile.lint . | |
| - name: Run built container | |
| run: docker run usmile-lint |