Skip to content

Commit a1be35c

Browse files
committed
Update GH Actions according to req changes
1 parent baf513c commit a1be35c

File tree

3 files changed

+6
-19
lines changed

3 files changed

+6
-19
lines changed

.github/workflows/code_checks.yaml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# .github/workflows/code_checks.yaml
22
name: Code_Checks
33

4-
on: ["push", "pull_request"]
4+
on: ["pull_request"]
55

66
jobs:
77
tests:
@@ -10,19 +10,6 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
include:
13-
- description: 'Lowest supported requirements'
14-
php: '7.2'
15-
stability: prefer-lowest
16-
- php: '7.2'
17-
stability: prefer-stable
18-
- php: '7.3'
19-
stability: prefer-stable
20-
- php: '7.4'
21-
stability: prefer-stable
22-
- php: '8.0'
23-
stability: prefer-stable
24-
- php: '8.1'
25-
stability: prefer-stable
2613
- php: '8.2'
2714
stability: prefer-stable
2815

.github/workflows/code_coverage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# .github/workflows/code_coverage.yaml
22
name: Code_Coverage
33

4-
on: ["push", "pull_request"]
4+
on: ["pull_request"]
55

66
jobs:
77
code_coverage:
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v3
1111
- uses: shivammathur/setup-php@v2
1212
with:
13-
php-version: 8.0
13+
php-version: 8.2
1414
coverage: pcov
1515

1616
- run: composer install --no-progress

.github/workflows/tests-upcoming-symfony.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# OS: Linux; Symfony: upcoming (still unreleased) version; PHP: latest stable
22
name: "Tests - Upcoming Symfony version (allowed to fail !)"
33

4-
on: ["push", "pull_request"]
4+
on: ["pull_request"]
55

66
env:
77
fail-fast: true
@@ -18,14 +18,14 @@ jobs:
1818
uses: shivammathur/[email protected]
1919
with:
2020
coverage: none
21-
php-version: '8.1'
21+
php-version: '8.2'
2222
tools: composer:v2
2323
extensions: mbstring
2424
ini-values: date.timezone=UTC
2525

2626
- name: 'Install project dependencies'
2727
env:
28-
SYMFONY_REQUIRE: '6.3.x@dev'
28+
SYMFONY_REQUIRE: '6.4.x@dev'
2929
run: |
3030
composer global config --no-plugins allow-plugins.symfony/flex true
3131
composer global require --no-progress --no-scripts --no-plugins symfony/flex

0 commit comments

Comments
 (0)