forked from pydantic/pydantic
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (36 loc) · 1.12 KB
/
dependencies-check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Dependencies Check
on:
schedule:
- cron: '43 3 * * 6,3'
workflow_dispatch: {}
jobs:
find_dependency_cases:
runs-on: ubuntu-latest
outputs:
PYTHON_DEPENDENCY_CASES: ${{ steps.list-python-dependencies.outputs.PYTHON_DEPENDENCY_CASES }}
steps:
- uses: actions/checkout@v4
- uses: samuelcolvin/list-python-dependencies@main
id: list-python-dependencies
with:
mode: first-last
test:
name: test py${{ matrix.python-version }} on ${{ matrix.PYTHON_DEPENDENCY_CASE }}
needs:
- find_dependency_cases
strategy:
fail-fast: true
matrix:
python-version: ['3.8', '3.11']
PYTHON_DEPENDENCY_CASE: ${{ fromJSON(needs.find_dependency_cases.outputs.PYTHON_DEPENDENCY_CASES) }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install pdm && pdm install --no-isolation
- run: pdm run pip install ${{ matrix.PYTHON_DEPENDENCY_CASE }}
- run: pdm run pip freeze
- run: make test