Skip to content

Use annotated target 1.1 #14

Use annotated target 1.1

Use annotated target 1.1 #14

Workflow file for this run

name: 'Unit Tests & Static Analysis'
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
continuous-integration:
runs-on: ubuntu-latest
env:
XDEBUG_MODE: coverage
steps:
- uses: actions/checkout@v3
- name: Composer
uses: php-actions/composer@v6
- name: Tests
uses: php-actions/phpunit@v3
with:
php_extensions: "xdebug"
coverage_html: "coverage/web"
coverage_text: true
- name: Static Analysis
run: "vendor/bin/psalm"