diff options
author | Eduardo Julian | 2022-04-06 21:52:30 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-04-06 21:52:30 -0400 |
commit | b0d725f24335e82eefc77175efc0a5282951316e (patch) | |
tree | 18a5cc4b318776250442311636a415a5cc2c1f20 /.github | |
parent | a0ed5fd377daf5754697636504de8e180abf9ec0 (diff) |
More efficient binary formatting.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test.yml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6dd130899..931e57ab3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,11 +38,12 @@ jobs: with: ruby-version: '2.6' - run: cd ./stdlib/ ../lux.sh with ruby with bibliotheca test -# test_stdlib: -# runs-on: ubuntu-latest -# steps: -# # Test on Lua -# # https://github.com/marketplace/actions/setup-lua-luajit -# - uses: xpol/setup-lua@v0.3 -# - run: cd ./stdlib/ && ../lux.sh clean && ../lux.sh with lua with bibliotheca test && cd .. + test_stdlib_on_lua: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: ./.github/workflows/setup_aedifex + # https://github.com/marketplace/actions/setup-lua-luajit + - uses: xpol/setup-lua@v0.3 + - run: cd ./stdlib/ && ../lux.sh with lua with bibliotheca test |