Dependencies Check #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |