-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor GitHub workflows and update dependencies
The commit introduces several major changes to improve the project's workflow and update dependencies. It removes the 'tweet' workflow and extracts the 'mutation testing' job into a separate workflow file named 'infection.yml'. Moreover, the dependencies in both the root and library 'composer.json' files have been updated, enabling compatibility with more recent versions.
- Loading branch information
Showing
5 changed files
with
39 additions
and
56 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow | ||
|
||
name: "Integrate" | ||
|
||
on: | ||
push: | ||
branches: | ||
- "*.x" | ||
|
||
jobs: | ||
mutation_testing: | ||
name: "5️⃣ Mutation Testing" | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- name: "Set up PHP" | ||
uses: "shivammathur/setup-php@v2" | ||
with: | ||
php-version: "8.2" | ||
extensions: "ctype, curl, dom, json, libxml, mbstring, openssl, phar, simplexml, sodium, tokenizer, xml, xmlwriter, zlib" | ||
coverage: "xdebug" | ||
|
||
- name: "Checkout code" | ||
uses: "actions/checkout@v4" | ||
|
||
- name: "Fetch Git base reference" | ||
run: "git fetch --depth=1 origin ${GITHUB_BASE_REF}" | ||
|
||
- name: "Install dependencies" | ||
uses: "ramsey/composer-install@v2" | ||
with: | ||
dependency-versions: "highest" | ||
composer-options: "--optimize-autoloader" | ||
|
||
- name: "Execute Infection" | ||
run: "make ci-mu" |
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
This file was deleted.
Oops, something went wrong.
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
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