Skip to content

Commit

Permalink
fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Georgi Drumev committed Dec 11, 2024
1 parent fa4b142 commit 7c0bc92
Show file tree
Hide file tree
Showing 4 changed files with 430 additions and 431 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
name: "CI"
name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v1
- name: Checkout code
uses: actions/checkout@v2

- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
extensions: mbstring, zip, xml, curl, dom
coverage: none # Set to `xdebug` if you need code coverage

- name: Install dependencies
run: composer install

- name: Run tests on docker compose
run: docker compose up --abort-on-container-exit
- name: Run tests
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 7c0bc92

Please sign in to comment.