fix: full_build.yamlをホストベースビルドに移行してディスク容量問題を解決 #2780
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: code amount | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| jobs: | |
| code-amount: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: install cloc | |
| run: sudo apt-get install -y cloc | |
| - name: Check out repository | |
| uses: actions/checkout@v5 | |
| - name: Run cloc | |
| run: cloc . --vcs=git |