Skip to content

Commit

Permalink
Workflow added on PR creation
Browse files Browse the repository at this point in the history
  • Loading branch information
MaestroError committed Feb 27, 2024
1 parent ea8a75a commit 22f7b65
Showing 1 changed file with 22 additions and 0 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: Validate composer.json and composer.lock
run: composer validate

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

- name: Run tests
run: ./vendor/bin/pest

0 comments on commit 22f7b65

Please sign in to comment.