formatting #198
Workflow file for this run
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: SCC Line Count | |
on: | |
push: | |
paths: | |
- "**/*.rs" | |
jobs: | |
scc_job: | |
runs-on: ubuntu-latest | |
name: Count lines of Rust code (includes tests) | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Get the lines of code. | |
id: scc | |
uses: iryanbell/[email protected] | |
with: | |
args: ${{ env.workspace }} -i rs --by-file -s complexity | |
- name: Echo scc output | |
run: echo "${{ steps.scc.outputs.scc }}" |