Skip to content

Bump version to 2.17.0 #352

Bump version to 2.17.0

Bump version to 2.17.0 #352

Workflow file for this run

name: CI
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [ "3.8", "3.10", "3.12" ]
robotframework:
- "4.1.0"
- "5.0.0"
- "6.0.0"
- "6.1.0"
- "7.0.0"
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
run: |
pip install pytest
pip install -r ./requirements.txt
pip install "robotframework~=${{ matrix.robotframework }}"
pip install -e .
- name: Run Pytest
run: pytest tests