Add workflow for Forgejo actions

This commit is contained in:
Akira Tempaku 2025-01-11 22:29:42 +09:00
commit 316d7756c4
Signed by: paku
GPG key ID: 5B4E8402BCC50607
3 changed files with 90 additions and 29 deletions
.github/workflows

31
.github/workflows/CI.yml vendored Normal file
View file

@ -0,0 +1,31 @@
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 ningle-fbr.asd

View file

@ -1,29 +0,0 @@
name: 'test'
on:
push:
branches:
- 'main'
pull_request:
jobs:
tests:
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: ningle-fbr
- uses: 40ants/run-tests@v2
with:
asdf-system: ningle-fbr