This repository was archived by the owner on Feb 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
69 lines (67 loc) · 1.86 KB
/
Copy pathpythonpackage.yml
File metadata and controls
69 lines (67 loc) · 1.86 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
name: Python package
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
linting:
runs-on: ubuntu-latest
steps:
# Checkout repo and setup python
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
# load pip cache if cache exists
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip
restore-keys: ${{ runner.os }}-pip
# install linters
- name: Setup linters
run: python -m pip install black flake8 mypy
# run linters
- name: Lint
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=5 --max-line-length=88 --ignore=E203 --statistics
black . --check
mypy .
build-and-test:
needs: linting
strategy:
fail-fast: true
matrix:
os: ["ubuntu-latest"]
python-version: [3.8, 3.9]
runs-on: ${{ matrix.os }}
steps:
# Checkout repo and setup python
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
# Install and configure poetry
- name: Install Poetry
uses: snok/install-poetry@v1.1.1
with:
virtualenvs-create: true
virtualenvs-in-project: true
# Load cached venv if cache exists
- name: Load cached venv (poetry)
id: cached-poetry-dependencies
uses: actions/cache@v2
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
# install dependencies if cache does not exist
- name: Install dependencies
run: poetry install
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
# run test suite
- name: Test
run: |
source .venv/bin/activate
pytest radiantkit/tests/