Adding workflow for main #1
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: Wave Main Workflow | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- 3.x | ||
pull_request: | ||
branches: [ main ] | ||
jobs: | ||
install: | ||
uses: ./.github/workflows/wave-install.yml | ||
with: | ||
php-version: '8.2' | ||
check-homepage: | ||
needs: install | ||
uses: ./.github/workflows/wave-homepage-check.yml | ||
Check failure on line 19 in .github/workflows/main.yml GitHub Actions / .github/workflows/main.ymlInvalid workflow file
|
||
with: | ||
install-path: ${{ needs.install.outputs.install-path }} | ||
# Additional jobs can be added here |