chore(deps): update dependency microsoft.net.test.sdk to v17.7.2 (#1036) #1113
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: Continuous Integration | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
name: Test | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
3.1.x | |
5.0.x | |
6.0.x | |
7.0.x | |
- name: Run tests | |
run: dotnet test --collect:"XPlat Code Coverage" --logger "GitHubActions" | |
- name: Upload coverage | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Code coverage ${{ matrix.os }} | |
path: "**/coverage.cobertura.xml" | |
coverage: | |
name: Coverage | |
needs: [test] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: Code coverage ubuntu-latest | |
path: coverage-ubuntu | |
- uses: actions/download-artifact@v3 | |
with: | |
name: Code coverage windows-latest | |
path: coverage-windows | |
- uses: actions/download-artifact@v3 | |
with: | |
name: Code coverage macos-latest | |
path: coverage-macos | |
- name: Generate coverage report | |
uses: danielpalme/[email protected] | |
with: | |
reports: "**/coverage.cobertura.xml" | |
targetdir: "coverage-report" | |
reporttypes: "Cobertura" | |
- name: Publish coverage report to Codacy | |
uses: codacy/codacy-coverage-reporter-action@master | |
if: github.repository == 'TestableIO/System.IO.Abstractions' && github.event_name == 'push' | |
with: | |
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
coverage-reports: coverage-report/Cobertura.xml | |
pack: | |
name: Pack | |
needs: [test] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
- name: Create packages | |
run: dotnet pack --configuration Release --output ./packages | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: NuGet packages | |
path: packages/*.* | |
deploy: | |
name: Deploy | |
if: | | |
github.ref == 'refs/heads/main' && | |
github.event_name == 'push' && | |
( | |
startsWith(github.event.head_commit.message, 'feat:') || | |
startsWith(github.event.head_commit.message, 'fix:') || | |
contains(github.event.head_commit.message, 'breaking change') | |
) | |
needs: [pack] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: NuGet packages | |
path: packages | |
- name: Push packages | |
run: dotnet nuget push "packages/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json | |
- uses: dotnet/[email protected] | |
id: nbgv | |
- name: Create GitHub release | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: v${{ steps.nbgv.outputs.SemVer2 }} | |
tag_name: v${{ steps.nbgv.outputs.SemVer2 }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
generate_release_notes: true | |
- name: Comment relevant issues and merge requests | |
uses: apexskier/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
comment-template: | | |
This is addressed in release {release_link}. | |
label-template: | | |
state: released |