-
Notifications
You must be signed in to change notification settings - Fork 1
135 lines (106 loc) · 3.46 KB
/
main.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
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
129
130
131
132
133
134
135
name: Python build
on: [push]
env:
POETRY_VERSION: 1.7.1
JETBRAINS_MONO_VERSION: 2.304
PYTHON_VERSION: "3.8"
jobs:
setup:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/[email protected]
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Cache Poetry
id: poetry-cache
uses: actions/cache@v3
with:
path: ~/poetry
key: ${{ runner.os }}-poetry-cache-${{ env.POETRY_VERSION }}
- name: Install Poetry
if: steps.poetry-cache.outputs.cache-hit != 'true'
run: |
python3 -m venv ~/poetry
~/poetry/bin/pip3 install poetry==$POETRY_VERSION
- name: Cache virtual environment
id: pip-cache
uses: actions/cache@v3
with:
path: ./.venv
key: ${{ runner.os }}-pip-cache-${{ hashFiles('./poetry.lock') }}
- name: Install requirements
if: steps.pip-cache.outputs.cache-hit != 'true'
run: |
~/poetry/bin/poetry install
code-style:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/[email protected]
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Cache Poetry
id: poetry-cache
uses: actions/cache@v3
with:
path: ~/poetry
key: ${{ runner.os }}-poetry-cache-${{ env.POETRY_VERSION }}
- name: Cache virtual environment
id: pip-cache
uses: actions/cache@v3
with:
path: ./.venv
key: ${{ runner.os }}-pip-cache-${{ hashFiles('./poetry.lock') }}
- name: Run Flake8
run: |
$POETRY_HOME/bin/poetry run flake8 . --count --statistics --config ./.flake8
- name: Run Black
uses: psf/black@stable
with:
options: "-S --line-length 120 --target-version py38 --check --diff --color"
test:
needs: code-style
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/[email protected]
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Cache Poetry
id: poetry-cache
uses: actions/cache@v3
with:
path: ~/poetry
key: ${{ runner.os }}-poetry-cache-${{ env.POETRY_VERSION }}
- name: Cache virtual environment
id: pip-cache
uses: actions/cache@v3
with:
path: ./.venv
key: ${{ runner.os }}-pip-cache-${{ hashFiles('./poetry.lock') }}
- name: Download JetBrains Mono
run: |
curl -sLO https://github.com/JetBrains/JetBrainsMono/releases/download/v$JETBRAINS_MONO_VERSION/JetBrainsMono-$JETBRAINS_MONO_VERSION.zip
unzip JetBrainsMono-$JETBRAINS_MONO_VERSION.zip
- name: Install JetBrains Mono on MacOS
if: matrix.os == 'macos-latest'
run: cp fonts/ttf/JetBrainsMono-Regular.ttf /Library/Fonts/
- name: Install JetBrains Mono on Linux
if: matrix.os == 'ubuntu-latest'
run: |
sudo cp fonts/ttf/JetBrainsMono-Regular.ttf /usr/local/share/fonts/
fc-cache -f -v
- name: Test anderson
run: |
$POETRY_HOME/bin/poetry run pytest . -vv