HEAD of dependencies #543
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: HEAD of dependencies | |
on: | |
# Run daily at 1:23 UTC | |
schedule: | |
- cron: '23 1 * * *' | |
workflow_dispatch: | |
jobs: | |
release-candidates: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.12'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install external dependencies | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y graphviz libgraphviz-dev | |
- name: Install dependencies | |
run: | | |
python -m pip install uv | |
uv pip install --system --upgrade pip wheel | |
uv pip install --system --upgrade '.[develop,local,reana]' | |
uv pip install --system --upgrade --pre '.[local]' | |
- name: List installed dependencies | |
run: uv pip list --system | |
- name: Run unit tests | |
run: | | |
pytest tests | |
adage: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.12'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install external dependencies | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y graphviz libgraphviz-dev | |
- name: Install dependencies | |
run: | | |
python -m pip install uv | |
uv pip install --system --upgrade pip wheel | |
uv pip install --system --upgrade '.[develop,local,reana]' | |
uv pip uninstall --system adage | |
uv pip install --system --upgrade git+https://github.com/yadage/adage.git | |
- name: List installed dependencies | |
run: uv pip list --system | |
- name: Run unit tests | |
run: | | |
pytest tests | |
packtivity: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.12'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install external dependencies | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y graphviz libgraphviz-dev | |
- name: Install dependencies | |
run: | | |
python -m pip install uv | |
uv pip install --system --upgrade pip wheel | |
uv pip install --system --upgrade '.[develop,local,reana]' | |
uv pip uninstall --system packtivity | |
uv pip install --system --upgrade git+https://github.com/yadage/packtivity.git | |
- name: List installed dependencies | |
run: uv pip list --system | |
- name: Run unit tests | |
run: | | |
pytest tests | |
yadage: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.12'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install external dependencies | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y graphviz libgraphviz-dev | |
- name: Install dependencies | |
run: | | |
python -m pip install uv | |
uv pip install --system --upgrade pip wheel | |
uv pip install --system --upgrade '.[develop,local,reana]' | |
uv pip uninstall --system yadage | |
uv pip install --system --upgrade git+https://github.com/yadage/yadage.git | |
- name: List installed dependencies | |
run: uv pip list --system | |
- name: Run unit tests | |
run: | | |
pytest tests |