Initial Draft For Revamped Echoflow Design #86
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@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install echoflow | |
run: pip install .[all] | |
- 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@v2 | |
with: | |
name: unit_test_log${{ matrix.python-version }} | |
path: unit_test_log${{ matrix.python-version }}.log |