trigger docs webhook #26
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: Test FlowKit downstream (master) | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
test-master: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Checkout FlowIO | |
uses: actions/checkout@v4 | |
with: | |
ref: master | |
path: flowio | |
- name: Checkout FlowKit (master) | |
uses: actions/checkout@v4 | |
with: | |
repository: whitews/FlowKit | |
ref: master | |
path: flowkit | |
- name: Install FlowKit | |
working-directory: flowkit | |
run: | | |
pip install --upgrade pip | |
pip install . | |
pip install ../flowio | |
- name: Run FlowKit tests | |
working-directory: flowkit | |
run: | | |
python3 ./run_tests.py |