From 6c85ee66a6bdd611e3f4f9f58239130bc4f92ea9 Mon Sep 17 00:00:00 2001 From: Alberto Paderno Date: Tue, 18 Feb 2025 20:55:22 +0100 Subject: [PATCH] Corrected the workflow file syntax --- .github/workflows/simpletest.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/simpletest.yml b/.github/workflows/simpletest.yml index a9a277b..704e476 100644 --- a/.github/workflows/simpletest.yml +++ b/.github/workflows/simpletest.yml @@ -1,6 +1,11 @@ name: Simpletest -on: [ pull_request, push ] -paths-ignore: [ '**.md', '**.txt' ] +on: + pull_request: + paths-ignore: [ '**.md', '**.txt' ] + branches: [ '1.*' ] + push: + paths-ignore: [ '**.md', '**.txt' ] + branches: [ '1.*' ] jobs: simpletest: name: Test code