Franca translation and introducing table/rule-based framework for translation #79
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: Container Tests | |
on: [pull_request] | |
jobs: | |
build_and_test_containers: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build containers | |
run: | | |
cd docker | |
make build_alpine | |
make build_ubuntu | |
- name: Test Interactive Commands | |
run: | | |
cd docker | |
variant=alpine make run_interactivity_test | |
variant=ubuntu make run_interactivity_test_pyenv | |
- name: Run unit tests in Ubuntu container | |
run: | | |
cd docker | |
make run_ubuntu_test | |
- name: Run unit tests in Alpine container | |
run: | | |
cd docker | |
make run_alpine_test | |