From 0d909187d5b9effcd08f533d50af7d29c0d6bfd8 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Fri, 8 Apr 2022 05:42:36 -0400 Subject: De-sigil-ification: $ --- .github/workflows/setup_aedifex/action.yml | 4 ++-- .github/workflows/test.yml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) (limited to '.github') 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 -- cgit v1.2.3