aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorEduardo Julian2022-04-06 16:07:22 -0400
committerEduardo Julian2022-04-06 16:07:22 -0400
commita0ed5fd377daf5754697636504de8e180abf9ec0 (patch)
tree8cc47f78ac6557c4ba233e6debd7b836adfb65b1 /.github
parent0494295b95c5c44ef389f1259e408f9445cfe0a1 (diff)
More efficient binary parsing.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml16
1 files changed, 10 insertions, 6 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index d4e4cd09f..6dd130899 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -28,6 +28,16 @@ jobs:
python-version: '3.9'
architecture: 'x64'
- run: cd ./stdlib/ && ../lux.sh with python with bibliotheca test
+ test_stdlib_on_ruby:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: ./.github/workflows/setup_aedifex
+ # https://github.com/actions/setup-ruby
+ - uses: actions/setup-ruby@v1
+ with:
+ ruby-version: '2.6'
+ - run: cd ./stdlib/ ../lux.sh with ruby with bibliotheca test
# test_stdlib:
# runs-on: ubuntu-latest
# steps:
@@ -35,10 +45,4 @@ jobs:
# # 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 on Ruby
-# # https://github.com/actions/setup-ruby
-# - uses: actions/setup-ruby@v1
-# with:
-# ruby-version: '2.6'
-# - run: cd ./stdlib/ && ../lux.sh clean && ../lux.sh with ruby with bibliotheca test && cd ..