Skip to content

Commit

Permalink
Optimize quality check trigger in Github Actions
Browse files Browse the repository at this point in the history
Simplified the trigger configuration for Quality Checks in quality.yaml. It's now set to run on both 'push' and 'pull_request' events to ensure lint validation occurs not only when changes are pushed but also during pull requests to the repository, improving code stability and reliability.
  • Loading branch information
Omar Al-Jarrah committed Nov 29, 2023
1 parent 1e9ced2 commit b1f8a81
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
name: Quality Checks
on:
push: {}
pull_request: {}
on: push
jobs:
flake8-lint:
name: Lint Validation
Expand Down

0 comments on commit b1f8a81

Please sign in to comment.