Skip to content

Add psalm action

Add psalm action #2

Workflow file for this run

name: phpunit
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: '8.3'

Check failure on line 17 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / phpunit

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 17, Col: 22): Unexpected value '8.3'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Install dependencies
run: composer install
- name: Run tests
run: vendor/bin/phpunit QueryGeneratorTest.php