Migrate from GitHub Actions to Forgejo Actions
Some checks failed
test / tests (sbcl-bin) (pull_request) Has been cancelled
Some checks failed
test / tests (sbcl-bin) (pull_request) Has been cancelled
This commit is contained in:
parent
a73af8d936
commit
b057ff148a
2 changed files with 35 additions and 29 deletions
35
.forgejo/workflows/test.yml
Normal file
35
.forgejo/workflows/test.yml
Normal file
|
@ -0,0 +1,35 @@
|
|||
name: 'test'
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
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
|
||||
PATH="~/.roswell/bin:$PATH"
|
||||
- name: Install dependencies
|
||||
run: qlot install
|
||||
- name: Run tests
|
||||
run: .qlot/bin/rove hsx.asd
|
29
.github/workflows/test.yml
vendored
29
.github/workflows/test.yml
vendored
|
@ -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
|
Loading…
Reference in a new issue