-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (39 loc) · 1.3 KB
/
linter.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
#
# Website As App
# Run any website as standalone desktop application
#
# @author Marcin Orlowski <mail (#) marcinOrlowski (.) com>
# @copyright 2023-2024 Marcin Orlowski
# @license https://www.opensource.org/licenses/mit-license.php MIT
# @link https://github.com/MarcinOrlowski/website-as-app
#
name: "Code lint"
on:
push:
branches: [ master ]
pull_request:
branches: [ master, dev ]
jobs:
unittests:
name: "Linting"
runs-on: ubuntu-latest
steps:
# https://github.com/marketplace/actions/checkout
- name: "Checkout sources"
uses: actions/checkout@v4
# https://github.com/marketplace/actions/paths-changes-filter
- name: "Look for changed files..."
uses: dorny/paths-filter@v2
id: filter
with:
filters: |
srcs:
- '**/*.py'
- name: "Installing dependencies..."
if: steps.filter.outputs.srcs == 'true'
run: pip install -r requirements-dev.txt
# https://github.com/marketplace/actions/wemake-python-styleguide
# https://wemake-python-styleguide.readthedocs.io/en/latest/pages/usage/integrations/github-actions.html
- name: "Running linter..."
if: steps.filter.outputs.srcs == 'true'
uses: wemake-services/[email protected]