Skip to content

Commit 636c5c7

Browse files
committed
feat(pylint): dont run on master or dev
1 parent 2155e48 commit 636c5c7

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/python.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929

3030
init:
3131
name: Meta
32+
if: github.ref_name != 'development' || github.ref_name != 'master'
3233
runs-on: ubuntu-latest
3334
outputs:
3435
changed-files: ${{ steps.changed-files.outputs.project_all_changed_files }}
@@ -100,6 +101,7 @@ jobs:
100101
101102
lint:
102103
name: Lint
104+
if: github.ref_name != 'development' || github.ref_name != 'master'
103105
needs:
104106
- init
105107
runs-on: ubuntu-latest
@@ -437,6 +439,33 @@ jobs:
437439

438440

439441

442+
443+
444+
################################################################################################################################
445+
#
446+
# Future Plan:
447+
#
448+
# with command: `git diff --name-only $(git rev-parse feature-next-release) HEAD`
449+
# to get a list of files to create a coverage html report with just the changed files.
450+
#
451+
################################################################################################################################
452+
453+
454+
455+
456+
457+
458+
459+
460+
461+
462+
463+
464+
465+
466+
467+
468+
440469
# should only run on dev/master and tag
441470
report:
442471
name: Create Test Reports

0 commit comments

Comments
 (0)