Skip to content

Dependency check

Dependency check #1117

name: Dependency check
on:
workflow_dispatch:
schedule:
- cron: '0 2 * * *'
jobs:
python-latest:
runs-on: ubuntu-latest
container:
image: python:latest
steps:
- uses: actions/checkout@v4
- name: python version
run: python --version
- name: install lib
run: pip install -e .
python-python311:
runs-on: ubuntu-latest
container:
image: python:3.11
steps:
- uses: actions/checkout@v4
- name: python version
run: python --version
- name: install lib
run: pip install -e .
minimum-python310:
runs-on: ubuntu-latest
container:
image: python:3.10
steps:
- uses: actions/checkout@v4
- name: python version
run: python --version
- name: install lib
run: pip install -e .