From f40576c39dd70fbb221c731a9f524bb5070800a4 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 9 Jun 2020 10:17:26 -0400 Subject: [PATCH] print lines of code from CLOC --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 753e88bc9..ecf1b771c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,6 +29,11 @@ jobs: - name: Checkout repo uses: actions/checkout@v2 + - name: Print lines of code + run: | + choco install cloc --no-progress + cloc --vcs git --exclude-dir Resources,store,test,Properties --include-lang C#,XAML + - name: Decrypt secrets if: github.ref == 'refs/heads/master' run: ./.github/scripts/android/decrypt-secrets.ps1