From 6c56b6da4b8f57aa49e9df7bd949f599486e122d Mon Sep 17 00:00:00 2001 From: David Cole <40234707+DavidArthurCole@users.noreply.github.com> Date: Thu, 19 Sep 2024 13:51:56 -0400 Subject: Init setup --- .github/workflows/detekt.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/detekt.yml (limited to '.github/workflows') diff --git a/.github/workflows/detekt.yml b/.github/workflows/detekt.yml new file mode 100644 index 000000000..da0d50daf --- /dev/null +++ b/.github/workflows/detekt.yml @@ -0,0 +1,14 @@ +name: detekt +on: + - pull_request +jobs: + detekt: + name: Run detekt + runs-on: ubuntu-latest + + steps: + - name: "checkout" + uses: actions/checkout@v2 + + - name: "detekt" + uses: natiginfo/action-detekt-all@1.23.7 -- cgit