Skip to content

Ship Deployment Instructions #665

Ship Deployment Instructions

Ship Deployment Instructions #665

Workflow file for this run

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