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 20700b0
Show file tree
Hide file tree
Showing 3 changed files with 420 additions and 427 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.0'
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
Loading

0 comments on commit 20700b0

Please sign in to comment.