Skip to content

Commit cc58ec8

Browse files
committed
minor #1216 Reduce the number of tests made by GitHub Actions (javiereguiluz)
This PR was merged into the main branch. Discussion ---------- Reduce the number of tests made by GitHub Actions There's no need to test all PHP version in all OS ... and that'll reduce the GitHub Actions minutes consumed for the entire Symfony organization. Commits ------- f8cf953 Reduce the number of tests made by GitHub Actions
2 parents c55dc6a + f8cf953 commit cc58ec8

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/ci.yaml renamed to .github/workflows/tests.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "CI"
1+
name: "Tests"
22

33
on:
44
pull_request:
@@ -27,6 +27,15 @@ jobs:
2727
matrix:
2828
operating-system: ['ubuntu-latest', 'windows-latest', 'macos-latest']
2929
php-version: ['7.3', '7.4', '8.0']
30+
exclude:
31+
- operating-system: 'macos-latest'
32+
php-version: '7.3'
33+
- operating-system: 'macos-latest'
34+
php-version: '7.4'
35+
- operating-system: 'windows-latest'
36+
php-version: '7.3'
37+
- operating-system: 'windows-latest'
38+
php-version: '7.4'
3039

3140
steps:
3241
- name: "Checkout code"

0 commit comments

Comments
 (0)