diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml index a8e8589..80cbded 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -10,8 +10,20 @@ 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