Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Manzadey committed Mar 16, 2023
2 parents 1ad4339 + a3875b8 commit 288b893
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,20 @@
name: Github Actions for PHP with PHPUnit Tests

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

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

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

- name: Run test suite
run: composer run-script test

0 comments on commit 288b893

Please sign in to comment.