Switch to setup-lisp 3.1.0 to test it. #250
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "CI", | |
"on": { | |
"push": { | |
"branches": [ | |
"master" | |
] | |
}, | |
"pull_request": null, | |
"schedule": [ | |
{ | |
"cron": "0 10 * * 1" | |
} | |
] | |
}, | |
"jobs": { | |
"run-tests": { | |
"strategy": { | |
"fail-fast": false, | |
"matrix": { | |
"os": [ | |
"windows-latest" | |
], | |
"lisp": [ | |
"sbcl-bin" | |
] | |
} | |
}, | |
"runs-on": "${{ matrix.os }}", | |
"env": { | |
"OS": "${{ matrix.os }}", | |
"QUICKLISP_DIST": "quicklisp", | |
"LISP": "${{ matrix.lisp }}" | |
}, | |
"steps": [ | |
{ | |
"name": "Checkout Code", | |
"uses": "actions/checkout@v3" | |
}, | |
{ | |
"name": "Setup Common Lisp Environment", | |
"uses": "40ants/setup-lisp@fix-test-ros", | |
"with": { | |
"asdf-system": "reblocks" | |
} | |
}, | |
{ | |
"name": "Show path", | |
"run": "env | sort" | |
}, | |
{ | |
"name": "Show dir", | |
"run": "ls -l ~/.roswell/bin" | |
}, | |
{ | |
"name": "Run Tests", | |
"uses": "40ants/run-tests@v2", | |
"with": { | |
"asdf-system": "reblocks", | |
"coveralls-token": "\n${{ matrix.lisp == 'sbcl-bin' &&\n matrix.os == 'ubuntu-latest' &&\n matrix.quicklisp == 'ultralisp' &&\n secrets.github_token }}" | |
} | |
} | |
] | |
} | |
} | |
} |