Skip to content

Commit

Permalink
Merge pull request #562 from reubenmiller/ci-test-robotframework-vers…
Browse files Browse the repository at this point in the history
…ions

ci: test against different robotframework versions
  • Loading branch information
mkorpela committed Jan 20, 2024
2 parents c1fcab2 + 26e6e5a commit 7101fc8
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,25 @@ jobs:
strategy:
matrix:
python: [ 3.8, 3.9, 3.11 ]
robotframework:
- "3.2.0"
- "4.1.0"
- "5.0.0"
- "6.0.0"
- "6.1.0"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: |
pip install tox
pip install -r ./requirements.txt
pip install "robotframework~=${{ matrix.robotframework }}"
- name: Run Tox
# Run tox using the version of Python in `PATH`
run: tox -e py

0 comments on commit 7101fc8

Please sign in to comment.