From c88d264dad481e02eb8f53b21d8b85a6d252e728 Mon Sep 17 00:00:00 2001
From: paku <paku@skyizwhite.dev>
Date: Sat, 11 Jan 2025 13:42:56 +0900
Subject: [PATCH 1/2] Fix

---
 .forgejo/workflows/CI.yml | 19 +++----------------
 1 file changed, 3 insertions(+), 16 deletions(-)

diff --git a/.forgejo/workflows/CI.yml b/.forgejo/workflows/CI.yml
index 79673c2..2939d53 100644
--- a/.forgejo/workflows/CI.yml
+++ b/.forgejo/workflows/CI.yml
@@ -9,27 +9,14 @@ on:
 jobs:
   test:
     runs-on: docker
-    
-    strategy:
-      matrix:
-        lisp:
-          - sbcl-bin
-          
-    env:
-      LISP: ${{ matrix.lisp }}
+    container:
+      image: fukamachi/roswell:latest
 
     steps:
       - uses: actions/checkout@v4
-      - name: Install Roswell
-        env:
-          LISP: ${{ matrix.lisp }}
-        run: |
-          curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh
       - name: Install Qlot
         run: ros install fukamachi/qlot
       - name: Install dependencies
-        run: |
-          PATH="~/.roswell/bin:$PATH"
-          qlot install
+        run: qlot install
       - name: Run tests
         run: .qlot/bin/rove hsx.asd

From fac4d06a93bcc76867a8224e29b94b0563bf4802 Mon Sep 17 00:00:00 2001
From: paku <paku@skyizwhite.dev>
Date: Sat, 11 Jan 2025 13:42:56 +0900
Subject: [PATCH 2/2] Fix

---
 .forgejo/workflows/CI.yml | 22 +++++-----------------
 1 file changed, 5 insertions(+), 17 deletions(-)

diff --git a/.forgejo/workflows/CI.yml b/.forgejo/workflows/CI.yml
index 79673c2..0012ee5 100644
--- a/.forgejo/workflows/CI.yml
+++ b/.forgejo/workflows/CI.yml
@@ -9,27 +9,15 @@ on:
 jobs:
   test:
     runs-on: docker
-    
-    strategy:
-      matrix:
-        lisp:
-          - sbcl-bin
-          
-    env:
-      LISP: ${{ matrix.lisp }}
+    container:
+      image: fukamachi/roswell:latest
 
     steps:
-      - uses: actions/checkout@v4
-      - name: Install Roswell
-        env:
-          LISP: ${{ matrix.lisp }}
-        run: |
-          curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh
+      - name: Checkout code
+        uses: actions/checkout@v4
       - name: Install Qlot
         run: ros install fukamachi/qlot
       - name: Install dependencies
-        run: |
-          PATH="~/.roswell/bin:$PATH"
-          qlot install
+        run: qlot install
       - name: Run tests
         run: .qlot/bin/rove hsx.asd