Skip to content

CICD: refactor pipeline #2

CICD: refactor pipeline

CICD: refactor pipeline #2

Workflow file for this run

name: 'Run tests'
inputs:
python-version:
required: true
rf-version:
required: true
runs:
using: 'composite'
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: ${{ python-version }}
cache: 'pip'
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install robotframework==${{ rf-version }}
- name: Run tests
run: |
invoke test