Skip to content

Commit bf7caad

Browse files
author
Roman
committed
add compatibility checkers
1 parent 1b1301b commit bf7caad

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Requirements compatibility for supported Python versions
2+
permissions:
3+
contents: read
4+
5+
on:
6+
pull_request:
7+
paths:
8+
- "pyproject.toml"
9+
10+
jobs:
11+
compatibility:
12+
if: github.event.pull_request.draft == false
13+
runs-on: ubuntu-latest
14+
15+
strategy:
16+
matrix:
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
18+
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: actions/setup-python@v5
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
25+
- run: |
26+
python -m pip install --upgrade pip
27+
python -m pip install ".[dev,cli]" --dry-run --no-deps

0 commit comments

Comments
 (0)