add tokei #8
This file contains 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] | |
jobs: | |
line_counter: | |
runs-on: ubuntu-latest | |
name: Initialise | |
steps: | |
- name: Count The Lines | |
uses: shadowmoose/[email protected] | |
id: badge | |
with: | |
debug: false | |
directory: ./ | |
badge: .github/cloc.svg | |
ignore: 'node_modules/|README' | |
- name: Print the output | |
run: | | |
echo "Scanned: ${{ steps.badge.outputs.counted_files }}"; | |
echo "Line Count: ${{ steps.badge.outputs.total_lines }}"; | |