test: add bin/test/languages.bash that runs tests in ourPLCC/languages #130
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: test_python-3.5.10_Java-11.0.21-tem | |
on: | |
pull_request: | |
jobs: | |
build: | |
name: test_python-3.5.10_Java-11.0.21-tem | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v3 | |
- | |
name: Build test image | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: ./containers/configurable/Dockerfile | |
tags: test-image:latest | |
push: false | |
build-args: | | |
JAVA_VERSION=11.0.21-tem | |
PYTHON_VERSION=3.5.10 | |
- | |
name: Test | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: test-image:latest | |
run: | | |
source /home/tester/.sdkman/bin/sdkman-init.sh | |
python3 --version | |
python --version | |
java --version | |
javac --version | |
/home/tester/.plcc/tests/run | |
shell: bash |