-
Notifications
You must be signed in to change notification settings - Fork 3
43 lines (40 loc) · 1.11 KB
/
ci-push.yml
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
33
34
35
36
37
38
39
40
41
42
43
name: Push
on: [push]
jobs:
build:
name: Runtimes
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 9
matrix:
python-version: [3.7, 3.8]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v1
- name: Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Dependencies
run: |
export MPLBACKEND=agg
pip install --upgrade pip
pip install cython
pip install tensorflow
pip install coveralls
pip install -r requirements.txt
python -m spacy download en
- name: Style
run: |
pip install flake8
flake8 . --count --select=E9,F63,F7 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Tests
run: |
export MPLBACKEND=agg
coverage run --source=signs ./test-ci.py
- name: Coverage
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
coveralls