-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (42 loc) · 1.13 KB
/
test.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
46
47
name: test
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ['3.7', '3.8']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python_version }}
- name: Install Poetry
run: |
curl -sSL "https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py" | python
- name: Install dependencies
run: |
source "$HOME/.poetry/env"
poetry config virtualenvs.in-project true
poetry install
- name: Run tests
run: |
source "$HOME/.poetry/env"
poetry run flake8 .
poetry run black --check kamui
poetry run mypy kamui
poetry run pytest
poetry run poetry check
poetry run pip check
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
file: ./coverage.xml