Skip to content

Commit

Permalink
Added Github Action Config
Browse files Browse the repository at this point in the history
  • Loading branch information
benanamen committed Mar 28, 2023
1 parent 1cd0439 commit 06a477a
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
on:
pull_request:
branches-ignore: gh-pages
push:
branches-ignore: gh-pages

name: Codeception Tests

jobs:
build:
runs-on: ubuntu-latest

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

- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
extensions: curl, mbstring, openssl, pdo, pdo_sqlite
ini-values: memory_limit=-1, date.timezone='UTC'
coverage: xdebug
tools: composer:v2

- name: Validate composer.json and composer.lock
run: composer validate

- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-interaction --no-suggest

- name: Run tests
run: php vendor/bin/codecept run --coverage --coverage-xml

- name: Upload to Codecov
uses: codecov/codecov-action@v3
with:
files: tests/_output/coverage.xml
verbose: true

0 comments on commit 06a477a

Please sign in to comment.