forked from sfu-db/dataprep
-
Notifications
You must be signed in to change notification settings - Fork 0
128 lines (106 loc) · 3.57 KB
/
ci.yml
File metadata and controls
128 lines (106 loc) · 3.57 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
name: CI
on:
push:
branches:
- develop
- master
pull_request:
branches:
- develop
jobs:
build:
name: ubuntu-latest x ${{ matrix.python }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.7"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Cache venv
uses: actions/cache@v2
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-build-${{ matrix.python }}-${{ secrets.CACHE_VERSION }}-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: |
echo "Cache Version ${{ secrets.CACHE_VERSION }}"
pip install poetry
poetry install
poetry config --list
- name: Print tool versions
run: |
poetry run mypy --version
poetry run pylint --version
poetry run pytest --version
poetry run black --version
- name: Check if the code is formatted
run: poetry run black --check --quiet dataprep
- name: Type check the project
run: poetry run mypy dataprep
- name: Test the project
run: poetry run pytest --cov-report xml --cov=dataprep dataprep/tests
env:
DATAPREP_BROWSER_TESTS: 0
DATAPREP_CREDENTIAL_TESTS: 0
DATAPREP_DATA_CONNECTOR_YELP_TOKEN: ""
DATAPREP_DATA_CONNECTOR_YOUTUBE_TOKEN: ""
- name: Style check the project
run: poetry run pylint dataprep
- uses: codecov/codecov-action@v2
if: github.event.pull_request.head.repo.full_name == github.repository
with:
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}
# path_to_write_report: ./coverage.xml
- uses: codacy/codacy-coverage-reporter-action@v1
if: github.event.pull_request.head.repo.full_name == github.repository
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage.xml
docs-build:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
pip install poetry
curl -L https://github.com/jgm/pandoc/releases/download/2.11.2/pandoc-2.11.2-1-amd64.deb -o /tmp/pandoc.deb && sudo dpkg -i /tmp/pandoc.deb
- name: Cache venv
uses: actions/cache@v2
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-build-${{ matrix.python }}-${{ secrets.CACHE_VERSION }}-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Build docs
run: poetry run sphinx-build -M html docs/source docs/build
- name: Archive docs
uses: actions/upload-artifact@v2
with:
name: docs
path: docs/build/html
docs-deploy:
runs-on: ubuntu-latest
needs: docs-build
if: ${{ github.event.ref == 'refs/heads/master' }}
steps:
- uses: actions/checkout@v2
- name: Download docs
uses: actions/download-artifact@v2
with:
name: docs
path: docs/build/html
- run: echo 'docs.dataprep.ai' > docs/build/html/CNAME
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs/build/html # The folder the action should deploy.
clean-exclude: dev