Dependency check #1059
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: 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 . |