diff --git a/.github/workflows/test-mutations.yml b/.github/workflows/test-mutations.yml index f888d0b4..c170d1bd 100644 --- a/.github/workflows/test-mutations.yml +++ b/.github/workflows/test-mutations.yml @@ -19,7 +19,6 @@ env: DOTNET_NOLOGO: true DOTNET_CLI_TELEMETRY_OPTOUT: true Configuration: Release - Namespace: Objectivity.AutoFixture.XUnit2 StrongNameKeyName: key.snk defaults: @@ -49,7 +48,7 @@ jobs: - name: 👾 test mutations working-directory: ./src run: | - dotnet tool run dotnet-stryker -s ${{ env.Namespace }}.AutoMock.sln -r 'ClearText' + dotnet tool run dotnet-stryker -f stryker-config.yaml -r dashboard -v ${{ github.ref_name }} --dashboard-api-key ${{ secrets.STRYKER_API_KEY }} env: CI: true StrongNameKey: ${{ secrets.SIGNING_KEY }} diff --git a/src/stryker-config.yaml b/src/stryker-config.yaml new file mode 100644 index 00000000..584808f2 --- /dev/null +++ b/src/stryker-config.yaml @@ -0,0 +1,4 @@ +stryker-config: + solution: 'Objectivity.AutoFixture.XUnit2.AutoMock.sln' + project-info: + name: 'github.com/ObjectivityLtd/AutoFixture.XUnit2.AutoMock' \ No newline at end of file