aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorEduardo Julian2022-04-08 05:42:36 -0400
committerEduardo Julian2022-04-08 05:42:36 -0400
commit0d909187d5b9effcd08f533d50af7d29c0d6bfd8 (patch)
treec50f12c5e47e3db90c3a701b54ee9953da942210 /.github
parente5e4c2aff562e5c01fefb808d1d68a40f29c9cc5 (diff)
De-sigil-ification: $
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/setup_aedifex/action.yml4
-rw-r--r--.github/workflows/test.yml12
2 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/setup_aedifex/action.yml b/.github/workflows/setup_aedifex/action.yml
index a571dea74..8ccceba4f 100644
--- a/.github/workflows/setup_aedifex/action.yml
+++ b/.github/workflows/setup_aedifex/action.yml
@@ -18,9 +18,9 @@ runs:
shell: bash
# Make the `lux` command available.
- - run: echo "$HOME/shell" >> $GITHUB_PATH
+ - run: mv ./shell/lux.sh ./lux.sh
shell: bash
- - run: cd ./stdlib/ && lux clean && cd ..
+ - run: cd ./stdlib/ && ../lux.sh clean && cd ..
shell: bash
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 6b98a1ad3..ab2d26cfb 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -6,13 +6,13 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: ./.github/workflows/setup_aedifex
- - run: cd ./stdlib/ && lux with jvm with bibliotheca test
+ - run: cd ./stdlib/ && ../lux.sh with jvm with bibliotheca test
test_aedifex:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/workflows/setup_aedifex
- - run: cd ./stdlib/ && lux with aedifex test
+ - run: cd ./stdlib/ && ../lux.sh with aedifex test
test_stdlib_on_node_js:
runs-on: ubuntu-latest
steps:
@@ -22,7 +22,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: '14'
- - run: cd ./stdlib/ && lux with js with bibliotheca test
+ - run: cd ./stdlib/ && ../lux.sh with js with bibliotheca test
test_stdlib_on_python_3:
runs-on: ubuntu-latest
steps:
@@ -33,7 +33,7 @@ jobs:
with:
python-version: '3.9'
architecture: 'x64'
- - run: cd ./stdlib/ && lux with python with bibliotheca test
+ - run: cd ./stdlib/ && ../lux.sh with python with bibliotheca test
test_stdlib_on_ruby:
runs-on: ubuntu-latest
steps:
@@ -43,7 +43,7 @@ jobs:
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.6'
- - run: cd ./stdlib/ && lux with ruby with bibliotheca test
+ - run: cd ./stdlib/ && ../lux.sh with ruby with bibliotheca test
test_stdlib_on_lua:
runs-on: ubuntu-latest
steps:
@@ -51,5 +51,5 @@ jobs:
- uses: ./.github/workflows/setup_aedifex
# https://github.com/marketplace/actions/setup-lua-luajit
- uses: xpol/setup-lua@v0.3
- - run: cd ./stdlib/ && lux with lua with bibliotheca test
+ - run: cd ./stdlib/ && ../lux.sh with lua with bibliotheca test