From b31d130e5e76f9fa909a332278fee95e3ac5221f Mon Sep 17 00:00:00 2001 From: jiriks74 Date: Mon, 8 Apr 2024 12:16:40 +0200 Subject: [PATCH] fix(ci/cd): Move StyLua from action to cargo + command [#68] StyLUA check is not working for PRs from forks https://openproject.stefka.eu/work_packages/68 --- .github/workflows/stylua.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/stylua.yml b/.github/workflows/stylua.yml index 639c7e1..b9b143d 100644 --- a/.github/workflows/stylua.yml +++ b/.github/workflows/stylua.yml @@ -4,12 +4,13 @@ jobs: StyLuacheck: runs-on: ubuntu-latest steps: + - name: Install cargo-hack from crates.io + uses: baptiste0928/cargo-install@v3 + with: + crate: stylua + version: 0.20.0 + - name: Checkout uses: actions/checkout@v3 - - name: StyLua check - uses: JohnnyMorganz/stylua-action@v3 - with: - token: ${{ secrets.GH_TOKEN }} - version: v0.18.2 # NOTE: we recommend pinning to a specific version in case of formatting changes - # CLI arguments - args: --check . + - name: Check code formatting + run: stylua -c .