Skip to content

Bump JetBrains.Annotations from 2024.2.0 to 2024.3.0 in /src/Objectivity.AutoFixture.XUnit2.Core #308

Bump JetBrains.Annotations from 2024.2.0 to 2024.3.0 in /src/Objectivity.AutoFixture.XUnit2.Core

Bump JetBrains.Annotations from 2024.2.0 to 2024.3.0 in /src/Objectivity.AutoFixture.XUnit2.Core #308

Workflow file for this run

name: '👾 Stryker.NET: Mutation testing'
on:
pull_request:
paths:
- 'stryker-config.yml'
- 'src/**'
- '!src/qodana.yml'
- '.github/workflows/test-mutations.yml'
- '.github/actions/materialize-signing-key/**'
types: [opened, synchronize, reopened]
push:
branches:
- 'master'
paths:
- 'stryker-config.yml'
- 'src/**'
- '!src/qodana.yml'
- '.github/workflows/test-mutations.yml'
- '.github/actions/materialize-signing-key/**'
workflow_dispatch:
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
Configuration: Release
defaults:
run:
shell: pwsh
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: 📥 checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 🖊️ materialize signing key
id: signing-key
uses: ./.github/actions/materialize-signing-key
with:
signing-key-value: ${{ secrets.SIGNING_KEY }}
- name: 💾 install stryker.net
run: |
dotnet new tool-manifest
dotnet tool install --local dotnet-stryker
- name: 👾 test mutations
working-directory: ./src
run: |
dotnet tool run dotnet-stryker -f ../stryker-config.yml -r dashboard -v ${{ github.ref_name }} --dashboard-api-key ${{ secrets.STRYKER_API_KEY }}
env:
StrongNameKey: ${{ secrets.SIGNING_KEY }}
StrongNameKeyPath: ${{ steps.signing-key.outputs.file-path }}