-
Notifications
You must be signed in to change notification settings - Fork 236
45 lines (35 loc) · 1.01 KB
/
continuous-integration.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
44
45
name: "CI"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
run:
name: "tests & coverage"
runs-on: macos-latest
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 2.7
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-test.txt
- name: Lint
run: ./run-tests.sh -l
- name: Unit tests
run: ./run-tests.sh
- name: Install coverage dependencies
run: pip install -r requirements-ci.txt
- name: Codacy
run: python-codacy-coverage -r coverage.xml -c ${{ github.sha }} || exit 0
- name: Coveralls
run: coveralls || exit 0
- name: Codecov
run: bash <(curl -s https://codecov.io/bash) || exit 0