Skip to content

Commit

Permalink
Add Github Actions to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mtmail committed Jun 11, 2024
1 parent 820a18e commit 341fb84
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI Tests

on:
push:
pull_request:

jobs:
test:
strategy:
matrix:
# https://www.php.net/supported-versions.php
php-version: ['8.3']

name: Level0 tests

runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: none

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

- name: Run tests
run: |
composer validate
./vendor/bin/phpunit --display-warnings test/

0 comments on commit 341fb84

Please sign in to comment.