Skip to content

Commit

Permalink
#16 added gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-andreyev committed Dec 23, 2020
1 parent 3d49ac0 commit 4444433
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,21 @@ jobs:
matrix:
php: [ 7.2, 7.3, 7.4, 8.0 ]
steps:
- uses: actions/checkout@v2
- name: Checkout code
uses: actions/checkout@v2

- uses: shivammathur/setup-php@2.9.0
- name: Setup PHP
uses: shivammathur/setup-php@2.9.0
with:
php-version: ${{ matrix.php }}
extensions: zip, :xdebug
tools: composer

- run: composer update --no-interaction
- name: Install dependencies
run: composer update --no-interaction

- name: Create logs dir
run: mkdir ./logs

- name: Start webdriver
shell: bash
Expand Down

0 comments on commit 4444433

Please sign in to comment.