Action and workflow were renamed.
This commit is contained in:
parent
9145e3b1f1
commit
66f3745b33
4 changed files with 7 additions and 5 deletions
|
@ -59,7 +59,7 @@ runs:
|
||||||
echo ::group::Create Qlot Environment
|
echo ::group::Create Qlot Environment
|
||||||
|
|
||||||
if [[ -n "${QLFILE_TEMPLATE}" ]]; then
|
if [[ -n "${QLFILE_TEMPLATE}" ]]; then
|
||||||
echo "${QLFILE_TEMPLATE}" | .github/actions/setup/templater.ros > qlfile
|
echo "${QLFILE_TEMPLATE}" | ${{ github.action_path }}/templater.ros > qlfile
|
||||||
rm -f qlfile.lock
|
rm -f qlfile.lock
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
name: 'Check Installation'
|
name: 'CI'
|
||||||
|
|
||||||
on:
|
on:
|
||||||
# This will run tests on pushes
|
# This will run tests on pushes
|
||||||
|
@ -15,7 +15,7 @@ on:
|
||||||
- cron: '0 10 * * 1'
|
- cron: '0 10 * * 1'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
run_tests:
|
run-tests:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -63,14 +63,16 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- uses: 40ants/cl-info/.github/actions/setup@custom-action
|
- uses: 40ants/cl-info/.github/actions/run-tests@custom-action
|
||||||
with:
|
with:
|
||||||
asdf-system: cl-info
|
asdf-system: cl-info
|
||||||
qlfile-template: |
|
qlfile-template: |
|
||||||
{% ifequal quicklisp_dist "ultralisp" %}
|
{% ifequal quicklisp_dist "ultralisp" %}
|
||||||
dist ultralisp http://dist.ultralisp.org
|
dist ultralisp http://dist.ultralisp.org
|
||||||
{% endifequal %}
|
{% endifequal %}
|
||||||
|
|
||||||
|
# This is additional step to check
|
||||||
|
# a command line script
|
||||||
- name: Run Command Line Version
|
- name: Run Command Line Version
|
||||||
run: |
|
run: |
|
||||||
echo ::group::Help Argument
|
echo ::group::Help Argument
|
Loading…
Reference in a new issue