Skip to content

Adding columns defined in actAs-templates to the docblock of the gene… #24

Adding columns defined in actAs-templates to the docblock of the gene…

Adding columns defined in actAs-templates to the docblock of the gene… #24

name: "Continuous Integration"
on: [push]
env:
fail-fast: true
jobs:
tests:
name: "Doctrine1 Tests"
runs-on: "ubuntu-22.04"
strategy:
matrix:
php-version:
- "7.4"
- "8.0"
- "8.1"
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
# extensions: "${{ matrix.extension }}"
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v2"
- name: "Run Tests"
run: "cd tests && php run.php"