Skip to content

Commit

Permalink
TEMP/TESTING
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfnl committed Sep 11, 2024
1 parent db0d172 commit f79019b
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ permissions:
jobs:

coding-standard:
if: github.repository == 'PHPMailer/PHPMailer'
runs-on: ubuntu-22.04
name: Coding standards

Expand Down Expand Up @@ -43,6 +44,7 @@ jobs:
run: cs2pr ./phpcs-report.xml

lint:
if: github.repository == 'PHPMailer/PHPMailer'
runs-on: ubuntu-22.04
strategy:
matrix:
Expand Down Expand Up @@ -83,14 +85,15 @@ jobs:
run: composer lint

test:
needs: ['coding-standard', 'lint']
# needs: ['coding-standard', 'lint']
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
php: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
extensions: ['optimal']
coverage: [false]
experimental: [false]
# php: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
# extensions: ['optimal']
# coverage: [false]
# experimental: [false]
include:
# Run code coverage on high/low PHP.
- php: '5.5'
Expand Down

0 comments on commit f79019b

Please sign in to comment.