keeper cache network info request cache with last update #971
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 | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
scc: | |
runs-on: ubuntu-latest | |
name: Sloc, Cloc and Code | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get the lines of code | |
id: scc | |
uses: Adapt-API/scc-docker-action@master | |
with: | |
args: ${{ env.workspace }} | |
- name: Echo scc output | |
run: | | |
echo | |
echo -n "${{ steps.scc.outputs.scc }}" |