Skip to content

Commit

Permalink
Merge pull request #1 from MaestroError/workflow-for-auto-testing
Browse files Browse the repository at this point in the history
Workflow added on PR creation
  • Loading branch information
MaestroError authored Feb 27, 2024
2 parents ea8a75a + a7c3343 commit 83c48f2
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 33 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: PHP CI

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

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Install dependencies
run: composer install --prefer-dist --no-progress

- name: Run tests
run: ./vendor/bin/pest
68 changes: 35 additions & 33 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 83c48f2

Please sign in to comment.