Echodataflow Redesign #648
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: CI | |
on: [push, pull_request] | |
jobs: | |
unit_test: | |
name: ${{ matrix.python-version }}-unit-test | |
runs-on: ubuntu-20.04 | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10'] | |
experimental: [false] | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest pytest-cov | |
pip install -r requirements.txt | |
pip install -e . | |
- name: Initialize | |
run: | | |
echodataflow init | |
prefect profiles create echodataflow-local | |
- name: Run unit tests | |
env: | |
FORCE_COLOR: 3 | |
run: pytest -vv |& tee unit_test_log${{ matrix.python-version }}.log | |
- name: Upload unit test log | |
if: ${{ success() || failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: unit_test_log${{ matrix.python-version }} | |
path: unit_test_log${{ matrix.python-version }}.log |