Skip to content

Commit

Permalink
test against robot 6
Browse files Browse the repository at this point in the history
  • Loading branch information
DetachHead committed Jan 8, 2024
1 parent fc0e7d9 commit 2519b76
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/check and publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,22 @@ permissions:
pull-requests: "read"

jobs:
check:
test:
strategy:
fail-fast: false
matrix:
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
robot_version: ["6.1.1", "7.0rc3"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python_version }}
- run: ./pw pdm add robotframework==${{ matrix.robot_version }}
- run: ./pw test
static_checks:
strategy:
fail-fast: false
matrix:
Expand All @@ -27,7 +42,6 @@ jobs:
- run: ./pw run black --check --diff .
- run: ./pw run ruff .
- run: ./pw run pylint pytest_robotframework tests
- run: ./pw test
- run: ./pw run robocop
- run: ./pw run robotidy --color --check --diff .
publish:
Expand Down

0 comments on commit 2519b76

Please sign in to comment.