aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/deploy.yml12
1 files changed, 7 insertions, 5 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index c3e068a3..014d2f2c 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -10,13 +10,15 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2
- - name: Set up Deno
- uses: denoland/setup-deno@v2
+ - name: Set up Ruby
+ uses: ruby/setup-ruby@v1
with:
- deno-version: v2.x
+ ruby-version: '3.4'
+ bundler-cache: true
+ working-directory: services/nuldoc
- - name: Run deno task check
- run: cd services/nuldoc; deno task check
+ - name: Run rubocop
+ run: cd services/nuldoc; bundle exec rake rubocop
deploy:
needs: test