diff options
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 |