File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 2929
3030 init :
3131 name : Meta
32- if : ${{ github.ref_name != 'master' && github.ref_name != 'development' }}
3332 runs-on : ubuntu-latest
3433 outputs :
3534 changed-files : ${{ steps.changed-files.outputs.project_all_changed_files }}
7877
7978 - name : Get all files that have changed
8079 id : changed-files
80+ if : ${{ github.ref_name != 'master' && github.ref_name != 'development' }}
8181 uses : tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46.0.5
8282 with :
8383 files : |
@@ -101,7 +101,6 @@ jobs:
101101
102102 lint :
103103 name : Lint
104- if : ${{ github.ref_name != 'master' && github.ref_name != 'development' }}
105104 needs :
106105 - init
107106 runs-on : ubuntu-latest
@@ -113,15 +112,18 @@ jobs:
113112
114113
115114 - uses : actions/checkout@v4
115+ if : ${{ github.ref_name != 'master' && github.ref_name != 'development' }}
116116
117117
118118 - name : Set up Python ${{ matrix.python-version }}
119+ if : ${{ github.ref_name != 'master' && github.ref_name != 'development' }}
119120 uses : actions/setup-python@v5
120121 with :
121122 python-version : ${{ matrix.python-version }}
122123
123124
124125 - name : Install Dependencies ${{ matrix.python-version }}
126+ if : ${{ github.ref_name != 'master' && github.ref_name != 'development' }}
125127 run : |
126128 python -m pip install --upgrade pip
127129 pip install -r requirements.txt
You can’t perform that action at this time.
0 commit comments