Skip to content

Commit

Permalink
Upgrade github actions file
Browse files Browse the repository at this point in the history
  • Loading branch information
mmunz committed Jan 3, 2025
1 parent 1986a92 commit f92892d
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
name: Linting
steps:
- uses: actions/checkout@v3
- name: Set up PHP Version
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2
coverage: none
tools: composer:v2
- name: Cache dependencies
Expand All @@ -24,7 +24,7 @@ jobs:
- name: Install composer dependencies
run: |
rm -f composer.lock
composer require typo3/minimal:^11.0
composer require typo3/minimal:^12.4
- name: phpstan
run: composer phpstan
- name: PHPCS
Expand All @@ -33,24 +33,22 @@ jobs:
run: composer ts:lint

build_doc:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
name: Build documentation
steps:
- uses: actions/checkout@v3
- name: Build doc
run: composer build:doc

tests:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
env:
- { php: 8.2, TYPO3_VERSION: ^12.0 }
- { php: 8.1, TYPO3_VERSION: ^12.0 }
- { php: 8.1, TYPO3_VERSION: ^11.0 }
- { php: 8.0, TYPO3_VERSION: ^11.0 }
- { php: 7.4, TYPO3_VERSION: ^11.0 }
- { php: 8.2, TYPO3_VERSION: ^13.4 }
- { php: 8.2, TYPO3_VERSION: ^12.4 }
- { php: 8.1, TYPO3_VERSION: ^12.4 }
name: Tests on TYPO3 ${{ matrix.env.TYPO3_VERSION }} / PHP${{ matrix.env.php }}
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit f92892d

Please sign in to comment.