Merge pull request #205 from Elektrobit/oci-tty-fix #269
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
on: | |
push: | |
branches: | |
- "master" | |
pull_request: | |
name: Robot Full Test | |
jobs: | |
robot_test: | |
runs-on: ubuntu-latest | |
name: Run Robot Framework Tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: | | |
sudo apt update | |
sudo apt -y install python3-docutils | |
sudo apt -y install python3 | |
pip install robotframework | |
sudo apt -y install podman | |
sudo apt -y install dh-make | |
- name: Build Flake-Pilot | |
run: make build | |
- name: Install Flake-Pilot | |
run: sudo make install | |
- name: Run Robot Framework | |
run: python3 -m robot robot_tests | |
- name: Upload Log | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: robot-log | |
path: /home/runner/work/flake-pilot/flake-pilot/log.html | |
retention-days: 5 | |