Release automation #16
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: Playbook Validation | |
on: [pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Fetch all branches | |
run: | | |
git fetch --all | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' # Specify the Python version you need | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install robotframework | |
pip install -r .github/tests/requirements.txt | |
- name: Dump GitHub context | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: echo "$GITHUB_CONTEXT" | |
- name: Run Robot Framework tests | |
run: | | |
mkdir -p results | |
python .github/tests/run_on_changed_playbooks.py --current-branch=${{github.event.pull_request.head.ref}} --base-branch=${{github.event.pull_request.base.ref}} --robot-path=.github/tests/robot/PlaybookScanner.robot | |
- name: Archive test results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: robot-results | |
path: results |