From e256e1bc4e31c8fe7fb5cfde8ca7c3bbb179745e Mon Sep 17 00:00:00 2001 From: Florent Morselli Date: Sun, 14 Apr 2024 18:45:47 +0200 Subject: [PATCH] Add "runs-on" attribute in mutation testing workflow An attribute, "runs-on", has been included in the mutation testing workflow in the .github/workflows/infection.yml file. This attribute specifies that the workflow should be run on the latest version of Ubuntu. --- .github/workflows/infection.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/infection.yml b/.github/workflows/infection.yml index 526db27..595bfa5 100644 --- a/.github/workflows/infection.yml +++ b/.github/workflows/infection.yml @@ -10,6 +10,7 @@ on: jobs: mutation_testing: name: "5️⃣ Mutation Testing" + runs-on: "ubuntu-latest" steps: - name: "Set up PHP" uses: "shivammathur/setup-php@v2"