Set minimum PHP version to 8.0 (which is still EOL but we want to sup… #72
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: | |
# Matches all branches including / in name | |
branches: '**' | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
unittests: | |
uses: "./.github/workflows/ci_unittests.yml" | |
secrets: inherit | |
integrationtests: | |
uses: "./.github/workflows/ci_integrationtests.yml" | |
secrets: inherit | |
analyze: | |
uses: "./.github/workflows/ci_analyze.yml" | |
secrets: inherit | |
cs-check: | |
uses: "./.github/workflows/ci_cs_check.yml" | |
secrets: inherit |