From b43cb5ba98a4687c1dad16004946a341c56de013 Mon Sep 17 00:00:00 2001 From: Brady Date: Sun, 21 Jul 2024 07:52:42 -0230 Subject: Fix: Disabled style checking throwing an error (#2246) --- .github/workflows/check-style.yaml.disabled | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/check-style.yaml.disabled (limited to '.github/workflows/check-style.yaml.disabled') diff --git a/.github/workflows/check-style.yaml.disabled b/.github/workflows/check-style.yaml.disabled new file mode 100644 index 000000000..ff172208f --- /dev/null +++ b/.github/workflows/check-style.yaml.disabled @@ -0,0 +1,16 @@ +name: check-style +on: + - pull_request +jobs: + ktlint: + name: Check Style + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + name: Checkout code + - name: ktlint + uses: ScaCap/action-ktlint@master + with: + github_token: ${{ secrets.github_token }} + reporter: github-pr-check -- cgit