-
Notifications
You must be signed in to change notification settings - Fork 6
56 lines (47 loc) · 1.41 KB
/
ci.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
python_version: ["3.8", "3.9", "3.10"]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup poetry
uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.4.2
- name: Install dependencies
run: poetry install --all-extras --with dev
# Tests in Origami 1.0 alpha rc are end-to-end, need a live Noteable app.
# Commenting tests out until we have time to configure Github repo with service account
# access token and other settings so it can interact with Noteable from CI tests
# - name: Run tests with pytest
# run: pytest -v --cov=origami
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v3
lint:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup poetry
uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.4.2
- name: Install dependencies
run: pip install flake8 black isort
- name: Lint with flake8
run: flake8 origami --count --show-source --statistics --benchmark
- name: Check with black
run: black --check origami
- name: Check with isort
run: isort --diff --check origami