Skip to content

Harden web UI error handling for failed scans #68

Harden web UI error handling for failed scans

Harden web UI error handling for failed scans #68

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: ["main"]
jobs:
php:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
tools: composer:v2
- name: Install dependencies
run: composer install --no-interaction --no-progress
- name: Lint
run: composer lint
- name: Static analysis
run: composer phpstan
- name: Tests
run: composer test