Skip to content

Dependency check

Dependency check #1079

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-python37:
runs-on: ubuntu-latest
container:
image: python:3.7
steps:
- uses: actions/checkout@v4
- name: python version
run: python --version
- name: install lib
run: pip install -e .