Skip to content

Trying to run tests on windows. #264

Trying to run tests on windows.

Trying to run tests on windows. #264

Workflow file for this run

{
"name": "CI",
"on": {
"push": {
"branches": [
"master"
]
},
"pull_request": null,
"schedule": [
{
"cron": "0 10 * * 1"
}
]
},
"jobs": {
"run-tests": {
"runs-on": "windows-latest",
"env": {
"OS": "windows-latest",
"QUICKLISP_DIST": "quicklisp",
"LISP": "sbcl-bin"
},
"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": "Run Tests",
"uses": "40ants/run-tests@v2",
"with": {
"asdf-system": "reblocks",
"coveralls-token": "${{ secrets.github_token }}"
}
}
]
}
}
}