diff options
author | Eduardo Julian | 2022-04-05 18:32:42 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-04-05 18:32:42 -0400 |
commit | 60daee098f92a44c3b404a9f5801f2e8126ad650 (patch) | |
tree | 7b58d0f6f937b8be5dcb46eaf0411f7961907c8a /.github/workflows | |
parent | a2d994a3f7a39964452df7523f69e16b10b266f9 (diff) |
No longer depending on the ASM library for JVM bytecode generation.
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/test.yml | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 740da5621..2576c20d3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,6 +17,15 @@ jobs: with: node-version: '14' - run: cd ./stdlib/ && ../lux.sh with js with bibliotheca test + test_stdlib_on_python_3: + - uses: actions/checkout@v2 + - uses: ./.github/workflows/setup_aedifex + # https://github.com/actions/setup-python + - uses: actions/setup-python@v2 + with: + python-version: '3.9' + architecture: 'x64' + - run: cd ./stdlib/ && ../lux.sh with python with bibliotheca test # test_stdlib: # runs-on: ubuntu-latest # steps: @@ -24,13 +33,6 @@ 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 Python -# # https://github.com/actions/setup-python -# - uses: actions/setup-python@v2 -# with: -# python-version: '3.9' -# architecture: 'x64' -# - run: cd ./stdlib/ && ../lux.sh clean && ../lux.sh with python with bibliotheca test && cd .. # # Test on Ruby # # https://github.com/actions/setup-ruby # - uses: actions/setup-ruby@v1 |