From af04ea7217a9b3db2440dc620661e62aa9f97b26 Mon Sep 17 00:00:00 2001 From: paku Date: Sun, 12 Jan 2025 13:11:13 +0900 Subject: [PATCH] Fix --- .github/workflows/CI.yml | 31 ------------------------------- .github/workflows/ci.yml | 29 +++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 31 deletions(-) delete mode 100644 .github/workflows/CI.yml create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml deleted file mode 100644 index 293cd8a..0000000 --- a/.github/workflows/CI.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: 'CI' - -on: - push: - branches: - - 'main' - pull_request: - -jobs: - test: - runs-on: ubuntu-latest - - strategy: - matrix: - lisp: - - sbcl-bin - - steps: - - uses: actions/checkout@v4 - - - name: Install dependencies - env: - LISP: ${{ matrix.lisp }} - run: | - curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | sh - ros install fukamachi/qlot - PATH="~/.roswell/bin:$PATH" - qlot install - - - name: Run tests - run: .qlot/bin/rove lack-mw.asd diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..115a9f4 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,29 @@ +name: 'CI' + +on: + push: + branches: + - 'main' + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + + strategy: + matrix: + lisp: + - sbcl-bin + - ccl-bin + + env: + LISP: ${{ matrix.lisp }} + + steps: + - uses: actions/checkout@v4 + - uses: 40ants/setup-lisp@v4 + with: + asdf-system: lack-mw + - uses: 40ants/run-tests@v2 + with: + asdf-system: lack-mw \ No newline at end of file