diff --git a/.github/workflows/js-ci.yml b/.github/workflows/js-ci.yml index 47ca43b59bb..a852a2daf18 100644 --- a/.github/workflows/js-ci.yml +++ b/.github/workflows/js-ci.yml @@ -1,11 +1,4 @@ -on: - push: - branches: - - master - tags: - - "*" - pull_request: - merge_group: +on: [push] jobs: test-catalog: runs-on: ubuntu-latest diff --git a/.github/workflows/py-ci.yml b/.github/workflows/py-ci.yml index 1d99b7c0439..cf897ebb078 100644 --- a/.github/workflows/py-ci.yml +++ b/.github/workflows/py-ci.yml @@ -1,11 +1,4 @@ -on: - push: - branches: - - master - tags: - - "*" - pull_request: - merge_group: +on: [push] jobs: linter: runs-on: ubuntu-latest @@ -20,10 +13,10 @@ jobs: python -m pip install 'pylint==2.10.2' 'pycodestyle>=2.6.1' - name: Run pylint run: | - pylint $(find -name '*.py' -not -path './venv/*') + pylint $(find -name '*.py') - name: Run pycodestyle run: | - pycodestyle $(find -name '*.py' -not -path './venv/*') + pycodestyle $(find -name '*.py') isort: runs-on: ubuntu-latest