Skip to content

Merge pull request #7 from hyvor/metadata-priority #17

Merge pull request #7 from hyvor/metadata-priority

Merge pull request #7 from hyvor/metadata-priority #17

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
name: PHP Tests
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- name: Install dependencies
run : composer install --ansi --no-progress
- name: Run tests
run : vendor/bin/pest
static_analysis:
name: PHP Static Analysis
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- name: Install dependencies
run : composer install --ansi --no-progress
- name: Run static analysis
run : vendor/bin/phpstan analyse --ansi