Microoptimalization of new possible state creating #25
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: Lines of Code | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| loc_job: | |
| runs-on: ubuntu-latest | |
| name: Run | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Create the badge | |
| uses: shadowmoose/GHA-LoC-Badge@1.0.0 | |
| id: badge | |
| with: | |
| debug: true | |
| directory: ./ | |
| badge_label: lines of code | |
| badge_color: green | |
| badge: ./output/badge.svg | |
| ignore: '.png|.github|README.md|LICENSE.txt' | |
| - name: Print the output | |
| run: | | |
| echo "Scanned: ${{ steps.badge.outputs.counted_files }}"; | |
| echo "Line Count: ${{ steps.badge.outputs.total_lines }}"; | |
| - name: Deploy to loc branch | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| publish_dir: ./output | |
| publish_branch: loc | |
| github_token: ${{ secrets.SHARPPDDL_TOKEN }} | |
| user_name: 'github-actions[bot]' | |
| user_email: 'github-actions[bot]@users.noreply.github.com' |