-
Notifications
You must be signed in to change notification settings - Fork 140
54 lines (41 loc) · 1.29 KB
/
ci.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
name: CI
on:
push:
branches: master
pull_request:
branches: master
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install flatpak-builder
run: |
sudo apt-get update
sudo apt-get install -y flatpak-builder jq
- name: Setup Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
- uses: actions/cache@v3
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: |
poetry install
- name: Check module sort order
run: poetry run isort --check-only flatpak_builder_lint
- name: Check code formatting
run: poetry run black --check flatpak_builder_lint
- name: Check code errors
run: poetry run flake8p flatpak_builder_lint
- name: Check python types
run: poetry run mypy flatpak_builder_lint
- name: Run test suite
run: poetry run pytest -v tests
- name: Validate exceptions.json
run: jq . < flatpak_builder_lint/staticfiles/exceptions.json