Skip to content

Commit

Permalink
chore: remove obsolete workflow files and create a new pipeline (main)
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Poyigi <[email protected]>
  • Loading branch information
sampoyigi committed Oct 19, 2024
1 parent 0966ed9 commit dcaab75
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 137 deletions.
28 changes: 0 additions & 28 deletions .github/workflows/compile-assets.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/workflows/pint.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Core Pipeline

on: [ push, pull_request, workflow_dispatch ]

jobs:
build-assets:
uses: tastyigniter/workflows/.github/workflows/build-assets.yml@main
php-lint:
needs: build-assets
if: ${{ always() && needs.build-assets.result == 'success' }}
uses: tastyigniter/workflows/.github/workflows/php-lint.yml@main
php-tests:
needs: php-lint
if: ${{ always() && needs.php-lint.result == 'success' }}
strategy:
matrix:
php: [ '8.2', '8.3' ]
uses: tastyigniter/workflows/.github/workflows/php-tests.yml@main
with:
php-version: ${{ matrix.target }}
33 changes: 0 additions & 33 deletions .github/workflows/static-analysis.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/tests.yml

This file was deleted.

0 comments on commit dcaab75

Please sign in to comment.