setup-lisp/.github/actions/run-tests/action.yml

20 lines
411 B
YAML
Raw Normal View History

2021-02-03 16:12:41 +00:00
name: 'Test Common Lisp System'
2021-02-02 07:16:27 +00:00
inputs:
2021-02-02 20:57:14 +00:00
asdf-system:
2021-02-02 07:26:39 +00:00
description: 'ASDF system to install and test'
2021-02-02 20:57:14 +00:00
required: true
2021-02-02 07:16:27 +00:00
run-tests:
description: A command to run tests
required: false
2021-02-02 06:04:39 +00:00
runs:
2021-02-02 06:19:57 +00:00
using: composite
steps:
2021-02-02 20:57:14 +00:00
- name: Run Tests
shell: bash
run: |
2021-02-02 20:57:14 +00:00
${{ github.action_path }}/run-tests.ros ${{ inputs.asdf-system }} <<EOF
${{ inputs.run-tests }}
EOF