From 1bfd2be9f547351d11d67e8b39225712f2bbee9f Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Wed, 7 May 2025 19:40:59 -0700 Subject: [PATCH] Update tests.yml --- .github/workflows/tests.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 87a5595..2f7330d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,25 +5,18 @@ on: branches: # Run tests when commits are pushed to these branches in your repo - main - master - - develop + - 3.3.x - dev/* pull_request: # Run tests when pull requests are made on these branches in your repo branches: - main - master - - develop + - 3.3.x - dev/* jobs: call-tests: + name: Extension tests uses: phpbb-extensions/test-framework/.github/workflows/tests.yml@3.3.x with: EXTNAME: phpbb/teamsecurity # Your extension vendor/package name - SNIFF: 1 # Run code sniffer on your code? 1 or 0 - IMAGE_ICC: 1 # Run icc profile sniffer on your images? 1 or 0 - EPV: 1 # Run EPV (Extension Pre Validator) on your code? 1 or 0 - EXECUTABLE_FILES: 1 # Run check for executable files? 1 or 0 - CODECOV: 0 # Run code coverage via codecov? 1 or 0 - PHPBB_BRANCH: 3.3.x # The phpBB branch to run tests on - secrets: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} # Do not change this