generated from cormorack/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
32 lines (30 loc) · 915 Bytes
/
main.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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