From 93bc518a0c52ed08b0ac893f10ebfd37a8b63ca2 Mon Sep 17 00:00:00 2001 From: Naoto Ishida Date: Mon, 15 Jan 2024 21:14:00 +0900 Subject: [PATCH] add cloc workflow --- .github/workflows/cloc.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/cloc.yml diff --git a/.github/workflows/cloc.yml b/.github/workflows/cloc.yml new file mode 100644 index 000000000..31ddefb31 --- /dev/null +++ b/.github/workflows/cloc.yml @@ -0,0 +1,15 @@ +name: cloc + +on: + pull_request: + workflow_dispatch: + +jobs: + cloc: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: cloc + uses: maxfie1d/actions-cloc@v1 \ No newline at end of file