fix RTD docs - attempt #4 #45
This file contains hidden or 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: Test FlowKit downstream (develop) | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
test-develop: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.12"] | |
steps: | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: | |
pip install --upgrade pip | |
- name: Checkout FlowIO | |
uses: actions/checkout@v4 | |
with: | |
ref: develop | |
path: flowio | |
- name: Checkout FlowUtils | |
uses: actions/checkout@v4 | |
with: | |
repository: whitews/FlowUtils | |
ref: develop | |
path: flowutils | |
- name: Checkout FlowKit (develop) | |
uses: actions/checkout@v4 | |
with: | |
repository: whitews/FlowKit | |
ref: develop | |
path: flowkit | |
- name: Install FlowIO | |
working-directory: flowio | |
run: | | |
pip install . | |
- name: Install FlowUtils | |
working-directory: flowutils | |
run: | | |
pip install . | |
- name: Install FlowKit | |
working-directory: flowkit | |
run: | | |
pip install . | |
- name: Run FlowKit tests | |
working-directory: flowkit | |
run: | | |
python3 ./run_tests.py |