Skip to content

Adds tests of edge cases #13

Adds tests of edge cases

Adds tests of edge cases #13

Workflow file for this run

name: Static Analysis
on: ["push", "pull_request"]
jobs:
static:
name: Static Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: composer:v2
coverage: none
- name: Install Dependencies
run: composer update --prefer-stable --no-interaction --no-progress --ansi
run: composer require composer/composer --prefer-source

Check failure on line 24 in .github/workflows/static.yml

View workflow run for this annotation

GitHub Actions / Static Analysis

Invalid workflow file

The workflow is not valid. .github/workflows/static.yml (Line: 24, Col: 9): 'run' is already defined
- name: Types
run: composer test:types
- name: Style
run: composer test:lint