chore(deps): update dependency microsoft.net.test.sdk to v17.7.0 #1633
Workflow file for this run
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
# ------------------------------------------------------------------------------ | |
# <auto-generated> | |
# | |
# This code was generated. | |
# | |
# - To turn off auto-generation set: | |
# | |
# [GitHubActionsSteps (AutoGenerate = false)] | |
# | |
# - To trigger manual generation invoke: | |
# | |
# nuke --generate-configuration GitHubActions_ci --host GitHubActions | |
# | |
# </auto-generated> | |
# ------------------------------------------------------------------------------ | |
name: ci | |
on: | |
workflow_dispatch: | |
workflow_call: | |
secrets: | |
THIS_IS_A_SECRET: | |
required: False | |
RSG_NUGET_API_KEY: | |
required: False | |
RSG_AZURE_DEVOPS: | |
required: False | |
push: | |
branches: | |
- 'master' | |
- 'main' | |
- 'next' | |
tags: | |
- 'v*' | |
paths-ignore: | |
- '.codecov.yml' | |
- '.editorconfig' | |
- '.gitattributes' | |
- '.gitignore' | |
- '.gitmodules' | |
- '.lintstagedrc.js' | |
- '.prettierignore' | |
- '.prettierrc' | |
- 'LICENSE' | |
- 'nukeeper.settings.json' | |
- 'omnisharp.json' | |
- 'package-lock.json' | |
- 'package.json' | |
- 'Readme.md' | |
- '.github/dependabot.yml' | |
- '.github/labels.yml' | |
- '.github/release.yml' | |
- '.github/renovate.json' | |
pull_request: | |
branches: | |
- 'master' | |
- 'main' | |
- 'next' | |
paths-ignore: | |
- '.codecov.yml' | |
- '.editorconfig' | |
- '.gitattributes' | |
- '.gitignore' | |
- '.gitmodules' | |
- '.lintstagedrc.js' | |
- '.prettierignore' | |
- '.prettierrc' | |
- 'LICENSE' | |
- 'nukeeper.settings.json' | |
- 'omnisharp.json' | |
- 'package-lock.json' | |
- 'package.json' | |
- 'Readme.md' | |
- '.github/dependabot.yml' | |
- '.github/labels.yml' | |
- '.github/release.yml' | |
- '.github/renovate.json' | |
jobs: | |
build: | |
env: | |
NUGET_PACKAGES: '${{ github.workspace }}/.nuget/packages' | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3.5.3 | |
with: | |
clean: 'false' | |
fetch-depth: '0' | |
- name: NuGet Cache | |
uses: actions/cache@v3 | |
with: | |
path: '${{ github.workspace }}/.nuget/packages' | |
key: "${{ runner.os }}-nuget-${{ hashFiles('**/Directory.Packages.props') }}-${{ hashFiles('**/Directory.Packages.support.props') }}" | |
restore-keys: | | |
${{ runner.os }}-nuget- | |
- name: π¨ Use .NET Core 6.0 SDK | |
uses: actions/setup-dotnet@v3.2.0 | |
with: | |
dotnet-version: '6.0.x' | |
- name: π¨ Use .NET Core 7.0 SDK | |
uses: actions/setup-dotnet@v3.2.0 | |
with: | |
dotnet-version: '7.0.x' | |
- name: π dotnet tool restore | |
run: | | |
dotnet tool restore | |
- name: π Restore | |
id: restore | |
run: | | |
dotnet nuke Restore --skip --thisisaothervariable '${{ vars.THIS_IS_A_VARIABLE }}' --this_is_a_variable '${{ vars.THIS_IS_A_VARIABLE }}' --thisisaenv '${{ env.THIS_IS_A_ENV || 'test' }}' --thisisasecret '${{ secrets.THIS_IS_A_SECRET }}' --githubtoken '${{ secrets.GITHUB_TOKEN }}' | |
- name: β Build | |
id: build | |
run: | | |
dotnet nuke Build --skip --thisisaothervariable '${{ vars.THIS_IS_A_VARIABLE }}' --this_is_a_variable '${{ vars.THIS_IS_A_VARIABLE }}' --thisisaenv '${{ env.THIS_IS_A_ENV || 'test' }}' --thisisasecret '${{ secrets.THIS_IS_A_SECRET }}' --githubtoken '${{ secrets.GITHUB_TOKEN }}' | |
- name: π¦ Test | |
id: test | |
run: | | |
dotnet nuke Test TriggerCodeCoverageReports GenerateCodeCoverageReportCobertura GenerateCodeCoverageBadges GenerateCodeCoverageSummary GenerateCodeCoverageReport --skip --thisisaothervariable '${{ vars.THIS_IS_A_VARIABLE }}' --this_is_a_variable '${{ vars.THIS_IS_A_VARIABLE }}' --thisisaenv '${{ env.THIS_IS_A_ENV || 'test' }}' --thisisasecret '${{ secrets.THIS_IS_A_SECRET }}' --githubtoken '${{ secrets.GITHUB_TOKEN }}' | |
- name: π¦ Pack | |
id: pack | |
run: | | |
dotnet nuke Pack --skip --thisisaothervariable '${{ vars.THIS_IS_A_VARIABLE }}' --this_is_a_variable '${{ vars.THIS_IS_A_VARIABLE }}' --thisisaenv '${{ env.THIS_IS_A_ENV || 'test' }}' --thisisasecret '${{ secrets.THIS_IS_A_SECRET }}' --githubtoken '${{ secrets.GITHUB_TOKEN }}' | |
- name: πΊ Publish coverage data | |
if: always() | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: 'coverage' | |
path: 'coverage/' | |
- name: πΏ Publish Coverage | |
if: (github.event_name != 'pull_request' && github.event_name != 'pull_request_target') || ((github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && github.event.pull_request.user.login != 'renovate[bot]' && github.event.pull_request.user.login != 'dependabot[bot]') | |
uses: codecov/codecov-action@v3.1.4 | |
with: | |
name: 'actions-${{ matrix.os }}' | |
- name: πΊ Publish logs | |
if: always() | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: 'logs' | |
path: 'artifacts/logs/' | |
- name: πΊ Publish test data | |
if: always() | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: 'test data' | |
path: 'artifacts/test/' | |
- name: πΊ Publish NuGet Packages | |
if: always() | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: 'nuget' | |
path: 'artifacts/nuget/' | |
Publish: | |
needs: | |
- Build | |
uses: RocketSurgeonsGuild/actions/.github/workflows/publish-nuget.yml@v0.3.3 | |
secrets: | |
RSG_NUGET_API_KEY: '${{ secrets.RSG_NUGET_API_KEY }}' | |
RSG_AZURE_DEVOPS: '${{ secrets.RSG_AZURE_DEVOPS }}' |