aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-02-01 02:28:10 +0900
committernsfisis <nsfisis@gmail.com>2026-02-01 02:28:10 +0900
commitcd16ed5d6b46d91ae9ac7b2237d6405ad6715a4a (patch)
tree0e00d7caf3031fa86decaa0cbc226cc1e521b914 /.github
parentd08e3edb65b215152aa26e3518fb2f2cd7071c4b (diff)
parent1964f77d03eb647dcf46d63dde68d7ae7301604f (diff)
downloadnsfisis.dev-cd16ed5d6b46d91ae9ac7b2237d6405ad6715a4a.tar.gz
nsfisis.dev-cd16ed5d6b46d91ae9ac7b2237d6405ad6715a4a.tar.zst
nsfisis.dev-cd16ed5d6b46d91ae9ac7b2237d6405ad6715a4a.zip
Merge branch 'feat/ruby-rewrite'
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