-
Notifications
You must be signed in to change notification settings - Fork 28
91 lines (86 loc) · 3.16 KB
/
pr-linting-and-unit-tests.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
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
name: Linting and Unit Tests
on:
pull_request:
types: [opened, edited, synchronize, reopened, ready_for_review]
branches:
- "**"
jobs:
linting-and-unit-tests:
name: "Code quality and unit tests"
runs-on: ubuntu-latest
outputs:
changed-plugins: ${{ steps.changed-plugins.outputs.cache-hit }}
steps:
#----------------------------------------------
# Check out repo
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v3
#----------------------------------------------
# Get changed files
#----------------------------------------------
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v40
- name: Get changed plugins
id: changed-plugins
run: |
# This will navigate to each subdirectory and perform integration tests
# If we have a directory that isn't a plugin then it will need to skip it. Currently there is none.
declare -a changed_dirs=()
for dir in ./*/; do
current_folder=$(basename "$dir")
for changed_file in ${{ steps.changed-files.outputs.all_changed_files }}; do
if [[ $changed_file == *"$current_folder"* ]]; then
if ! [[ ${changed_dirs[*]} =~ $current_folder ]]; then
changed_dirs+=("$current_folder")
fi
fi
done
done
echo "changed-plugins=${changed_dirs[*]}" >> $GITHUB_OUTPUT
#----------------------------------------------
# Install python and poetry with cache
#----------------------------------------------
- name: Install poetry
run: pipx install poetry
id: setup-poetry
- uses: actions/setup-python@v4
with:
python-version: "3.9"
cache: "poetry"
#----------------------------------------------
# Install dependencies
#----------------------------------------------
- name: Install dependencies
id: install-dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: |
echo ${{ steps.changed-plugins.outputs.changed-plugins }}
# for dir in ${{ steps.changed-plugins.changed-plugins }}; do
# cd $dir
# poetry install --no-interaction --no-root
# cd ..
# done
# #----------------------------------------------
# # Lint plugins
# #----------------------------------------------
# - name: Lint plugins
# id: lint-plugins
# run: |
# for dir in ${{ steps.changed-plugins.changed-plugins }}; do
# cd $dir
# poetry run ruff check .
# cd ..
# done
# #----------------------------------------------
# # Unit tests
# #----------------------------------------------
# - name: Unit test plugins
# id: unit-tests
# run: |
# for dir in ${{ steps.changed-plugins.changed-plugins }}; do
# cd $dir
# poetry run pytest
# cd ..
# done