Skip to content

Commit

Permalink
chore: remove emojis
Browse files Browse the repository at this point in the history
  • Loading branch information
imdhemy committed Mar 25, 2024
1 parent 316c81c commit 13cb143
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: πŸš€ CI
name: CI
on: [ push, pull_request ]
jobs:
ci:
name: "πŸš€ CI"
name: "CI"
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
Expand All @@ -11,26 +11,26 @@ jobs:
steps:

# --------- Setup steps ---------
- name: "πŸ“¦ Checkout"
- name: "Checkout"
uses: actions/checkout@v3

- name: "🐘 Setup PHP"
- name: "Setup PHP"
uses: shivammathur/setup-php@v2
with:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: pcov, xdebug

- name: "πŸ“¦ Install dependencies"
- name: "Install dependencies"
uses: ramsey/composer-install@v2

# --------- Run steps ---------
- name: "πŸ§ͺ Run tests"
- name: "Run tests"
run: "composer test"

- name: "🧹 PHP CS Fixer"
- name: "PHP CS Fixer"
run: "composer cs-fix"

- name: "πŸ” Psalm"
- name: "Psalm"
run: "composer psalm"

0 comments on commit 13cb143

Please sign in to comment.