Skip to content

Commit d278924

Browse files
committed
feat(pylint): dont run on master or dev
1 parent 5508fa9 commit d278924

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python.yaml

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

3030
init:
3131
name: Meta
32-
if: github.ref_name != 'refs/heads/development' && github.ref_name != 'refs/heads/master'
32+
if: ${{ github.ref_name != 'master' && github.ref_name != 'development' }}
3333
runs-on: ubuntu-latest
3434
outputs:
3535
changed-files: ${{ steps.changed-files.outputs.project_all_changed_files }}
@@ -101,7 +101,7 @@ jobs:
101101
102102
lint:
103103
name: Lint
104-
if: github.ref_name != 'refs/heads/development' && github.ref_name != 'refs/heads/master'
104+
if: ${{ github.ref_name != 'master' && github.ref_name != 'development' }}
105105
needs:
106106
- init
107107
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)