Skip to content

Commit

Permalink
fix php version to 8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Georgi Drumev committed Dec 11, 2024
1 parent fa4b142 commit 94cb64f
Show file tree
Hide file tree
Showing 3 changed files with 417 additions and 424 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,22 @@ on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v1

- name: Set up PHP 8.1
uses: shivammathur/setup-php@v2
with:
php-version: '8.1' # Specify the exact PHP version
tools: composer

- name: Verify PHP Version
run: php -v

- name: Install Dependencies
run: composer install

- name: Run tests on docker compose
run: docker compose up --abort-on-container-exit
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"homepage": "https://github.com/Codeception/VisualCeption",
"license": "Apache-2.0",
"require": {
"php": ">=8.0",
"php": "8.1.*",
"ext-imagick": "*",
"ext-mbstring": "*",
"ext-zip": "*",
Expand Down
Loading

0 comments on commit 94cb64f

Please sign in to comment.