Bump the analyzers group across 9 directories with 1 update (#179) #337
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
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 }} |