From 1083e495490023725fea3ccf9c199c27e6ffe993 Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Tue, 6 May 2025 15:35:19 -0700 Subject: [PATCH] Remove optional tests.yml configs --- .github/workflows/tests.yml | 6 +----- skeleton/.github/workflows/tests.yml.twig | 9 +-------- 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c77c073..420354c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,14 +16,10 @@ on: jobs: call-tests: + name: Extension tests uses: phpbb-extensions/test-framework/.github/workflows/tests.yml@3.3.x with: EXTNAME: phpbb/skeleton # 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: 1 # 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 diff --git a/skeleton/.github/workflows/tests.yml.twig b/skeleton/.github/workflows/tests.yml.twig index f6fb211..4644aa9 100644 --- a/skeleton/.github/workflows/tests.yml.twig +++ b/skeleton/.github/workflows/tests.yml.twig @@ -442,17 +442,10 @@ on: jobs: call-tests: + name: Extension tests uses: phpbb-extensions/test-framework/.github/workflows/tests.yml@3.3.x with: EXTNAME: {{ EXTENSION.vendor_name }}/{{ EXTENSION.extension_name }} # 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 # See the README for full details and setup instructions: https://github.com/phpbb-extensions/test-framework {% endif %}