Skip to content

Commit

Permalink
fix: ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
NHZEX committed Nov 1, 2023
1 parent 4c3f929 commit 0931b7c
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: ci

on: [push]
on:
push:
paths-ignore:
- "README.md"
pull_request:
paths-ignore:
- "README.md"

jobs:
phpunit:
Expand All @@ -23,7 +29,7 @@ jobs:

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

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -43,6 +49,7 @@ jobs:

- name: Get composer cache directory
id: composer-cache
shell: "bash"
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache vendor
Expand Down

0 comments on commit 0931b7c

Please sign in to comment.