Skip to content

Update xunit

Update xunit #1408

Workflow file for this run

# ------------------------------------------------------------------------------
# <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:
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'
permissions:
actions: read
checks: read
contents: read
deployments: read
id-token: none
issues: write
discussions: none
packages: none
pages: none
pull-requests: write
repository-projects: none
security-events: none
statuses: write
jobs:
build:
env:
NUGET_PACKAGES: '${{ github.workspace }}/.nuget/packages'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
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@v4.0.0
with:
dotnet-version: '6.0.x'
- name: πŸ”¨ Use .NET Core 8.0 SDK
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: '8.0.x'
- name: 🎁 dotnet tool restore
run: |
dotnet tool restore
- name: 🎁 Restore
id: restore
run: |
dotnet nuke Restore --skip
- name: βš™ Build
id: build
run: |
dotnet nuke Build --skip
- name: 🚦 Test
id: test
run: |
dotnet nuke Test TriggerCodeCoverageReports GenerateCodeCoverageReportCobertura GenerateCodeCoverageBadges GenerateCodeCoverageSummary GenerateCodeCoverageReport --skip
- name: πŸ“¦ Pack
id: pack
run: |
dotnet nuke Pack --skip
- name: 🏺 Publish coverage data
if: always()
uses: actions/upload-artifact@v3.1.3
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.3
with:
name: 'logs'
path: 'artifacts/logs/'
- name: 🏺 Publish test data
if: always()
uses: actions/upload-artifact@v3.1.3
with:
name: 'test data'
path: 'artifacts/test/'
- name: 🏺 Publish NuGet Packages
if: always()
uses: actions/upload-artifact@v3.1.3
with:
name: 'nuget'
path: 'artifacts/nuget/'
Publish:
needs:
- Build
uses: RocketSurgeonsGuild/actions/.github/workflows/publish-nuget.yml@v0.3.4
secrets:
RSG_NUGET_API_KEY: '${{ secrets.RSG_NUGET_API_KEY }}'
RSG_AZURE_DEVOPS: '${{ secrets.RSG_AZURE_DEVOPS }}'