From b1f644607d786378cd62a04a73ac016cc493fa6d Mon Sep 17 00:00:00 2001 From: marked Date: Wed, 7 May 2025 00:46:47 +0200 Subject: [PATCH] Fix CI --- .forgejo/workflows/ci.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 4a40166..4295e23 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -58,12 +58,15 @@ jobs: - name: Checkout Repository uses: actions/checkout@v4 - - name: Check code style - uses: https://github.com/JohnnyMorganz/stylua-action@v4 + - name: Install Rokit + uses: https://github.com/CompeyDev/setup-rokit@v0.1.2 with: token: ${{ secrets.githubtoken }} - version: v2.1.0 - args: --check lib/ + + # Forgejo doesn't play nice with the stylua action for some reason + - name: Check Code Style + run: | + stylua --check lib/ test: name: Unit Testing