Bump up version #62
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: TCK | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Run TCK | |
runs-on: ubuntu-latest | |
steps: | |
- name: "checkout repository" | |
uses: actions/checkout@v2 | |
- name: "checkout submodules" | |
run: | | |
git submodule init | |
git submodule update | |
- name: "install behave" | |
run: | | |
pip install . | |
git clone https://github.com/aneeshdurg/behave | |
cd behave | |
git checkout support_and_after_background | |
pip install -r py.requirements/all.txt | |
python3 setup.py install --user | |
- name: "Run TCK tests" | |
run: | | |
cd test/tck | |
python3 run_tck.py |