From 3b5e0f5c71b63d0ac02f24d90462342d440aa411 Mon Sep 17 00:00:00 2001 From: Ryan Cavicchioni Date: Sun, 7 Jul 2024 16:31:19 -0500 Subject: [PATCH] standardrb: don't autofix --- .gitea/workflows/demo.yaml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml index a8e8589..8ccf895 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -10,11 +10,23 @@ jobs: checks: write contents: write steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Ruby Setup + uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.3' + bundler-cache: true + + - run: bundle install + - name: Standard Ruby - uses: standardrb/standard-ruby-action@v1 + run: bundle exec standardrb + test: - needs: link + needs: lint runs-on: ubuntu-latest steps: - name: Checkout