Skip to content

Commit

Permalink
Adding GH workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
erikaheidi committed Jun 21, 2021
1 parent 58b21f6 commit 7296916
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: PHP Composer

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

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

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

- name: Run test suite
run: ./vendor/bin/pest

0 comments on commit 7296916

Please sign in to comment.