Migrate from GitHub to Forgejo #1

Merged
paku merged 5 commits from forgejo into master 2025-01-11 09:52:58 +00:00
2 changed files with 35 additions and 29 deletions
Showing only changes of commit 58d8e4c993 - Show all commits

35
.forgejo/workflows/CI.yml Normal file
View file

@ -0,0 +1,35 @@
name: 'CI'
on:
push:
branches:
- 'master'
pull_request:
jobs:
test:
runs-on: docker
strategy:
matrix:
lisp:
- sbcl-bin
env:
LISP: ${{ matrix.lisp }}
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
- name: Run tests
run: .qlot/bin/rove hsx.asd

View file

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