Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 1 addition & 20 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,25 +64,6 @@ jobs:
./Artifacts/*
./TestResults/*.trx

mutation-tests:
name: "Mutation tests"
runs-on: ubuntu-latest
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
DOTNET_NOLOGO: true
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup .NET SDKs
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
10.0.x
- name: Run mutation tests
run: ./build.sh MutationTests MutationTestDashboard

benchmarks:
name: "Benchmarks (${{ matrix.benchmark }})"
strategy:
Expand Down Expand Up @@ -229,7 +210,7 @@ jobs:
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
runs-on: macos-latest
environment: production
needs: [ pack, mutation-tests, publish-test-results, static-code-analysis, benchmarks ]
needs: [ pack, publish-test-results, static-code-analysis, benchmarks ]
permissions:
contents: write
id-token: write
Expand Down
23 changes: 0 additions & 23 deletions .github/workflows/ci-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,6 @@ on:
- completed

jobs:
mutation-tests:
name: "Mutation tests"
runs-on: ubuntu-latest
permissions:
pull-requests: write
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup .NET SDKs
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
10.0.x
- name: Upload mutation dashboard and create comment
run: ./build.sh MutationTestDashboard
env:
GithubToken: ${{ secrets.GITHUB_TOKEN }}
WorkflowRunId: ${{ github.event.workflow_run.id }}

benchmarks:
name: "Benchmarks"
runs-on: ubuntu-latest
Expand Down
25 changes: 0 additions & 25 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,31 +63,6 @@ jobs:
./Artifacts/*
./TestResults/*.trx

mutation-tests:
name: "Mutation tests"
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup .NET SDKs
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
10.0.x
- name: Run mutation tests
run: ./build.sh MutationTests
- name: Upload artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: MutationTests
path: |
./Artifacts/*

benchmarks:
name: "Benchmarks (${{ matrix.benchmark }})"
strategy:
Expand Down
4 changes: 0 additions & 4 deletions .nuke/build.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@
"CodeCoverage",
"Compile",
"DotNetUnitTests",
"MutationComment",
"MutationTestDashboard",
"MutationTestExecution",
"MutationTests",
"Pack",
"PublishBenchmarkReport",
"Restore",
Expand Down
245 changes: 0 additions & 245 deletions Pipeline/Build.MutationTests.cs

This file was deleted.

8 changes: 0 additions & 8 deletions Pipeline/Build.Pack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,6 @@ partial class Build
continue;
}

if (line.StartsWith("[![Mutation testing badge](https://img.shields.io/endpoint"))
{
sb.AppendLine(line
.Replace("%2Fmain)", $"%2Frelease%2Fv{version})")
.Replace("/main)", $"/release/v{version})"));
continue;
}

sb.AppendLine(line);
}

Expand Down
1 change: 0 additions & 1 deletion Pipeline/Build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
<ItemGroup>
<PackageDownload Include="coverlet.console" Version="[3.1.2]"/>
<PackageDownload Include="dotnet-sonarscanner" Version="[9.0.2]"/>
<PackageDownload Include="dotnet-stryker" Version="[4.4.1]"/>
<PackageDownload Include="GitVersion.Tool" Version="[6.0.5]"/>
<PackageDownload Include="ReportGenerator" Version="[5.4.1]"/>
<PackageDownload Include="xunit.runner.console" Version="[2.9.2]"/>
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
[![Build](https://github.com/Testably/Awaiten/actions/workflows/build.yml/badge.svg)](https://github.com/Testably/Awaiten/actions/workflows/build.yml)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=Testably_Awaiten&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=Testably_Awaiten)
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=Testably_Awaiten&metric=coverage)](https://sonarcloud.io/summary/overall?id=Testably_Awaiten)
[![Mutation testing badge](https://img.shields.io/endpoint?style=flat&url=https%3A%2F%2Fbadge-api.stryker-mutator.io%2Fgithub.com%2FTestably%2FAwaiten%2Fmain)](https://dashboard.stryker-mutator.io/reports/github.com/Testably/Awaiten/main)

**The async-first dependency injection container for .NET.**

Expand Down
Loading