Skip to content

chore(deps): update dependency xunit to 2.9.3 #559

chore(deps): update dependency xunit to 2.9.3

chore(deps): update dependency xunit to 2.9.3 #559

Workflow file for this run

name: PR-Build
on:
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-22.04, windows-2022, macos-13 ]
env:
src-directory: ./src
# CODCOV
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
steps:
- name: Checkout the repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Fetch all tags and branches
run: git fetch --prune --unshallow
# .net Core setup
- name: Setup .NET Core 2.1
uses: actions/setup-dotnet@87b7050bc53ea08284295505d98d2aa94301e852 # v4
with:
dotnet-version: 2.1
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@87b7050bc53ea08284295505d98d2aa94301e852 # v4
with:
dotnet-version: 3.1
- name: Setup .NET 5.x
uses: actions/setup-dotnet@87b7050bc53ea08284295505d98d2aa94301e852 # v4
with:
dotnet-version: 5.x
- name: Setup .NET 6.x
uses: actions/setup-dotnet@87b7050bc53ea08284295505d98d2aa94301e852 # v4
with:
dotnet-version: 6.x
- name: Setup .NET 8.x
uses: actions/setup-dotnet@87b7050bc53ea08284295505d98d2aa94301e852 # v4
with:
dotnet-version: 8.x
- name: Use Node.js 20
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
with:
node-version: 20
# Caching Tools
- name: Cache Tools
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: tools
key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }}
# Build
- name: Build Project
uses: cake-build/cake-action@v2
with:
script-path: recipe.cake
target: CI
verbosity: Verbose
cake-version: 1.3.0
cake-bootstrap: true
# Publish
- name: Publish Issues-Report as build artifact
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4
if: matrix.os == 'windows-latest'
with:
if-no-files-found: warn
name: Issue Report
path: BuildArtifacts/report.html
- name: Publish NuGet package as build artifact
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4
if: matrix.os == 'ubuntu-22.04'
with:
if-no-files-found: warn
name: NuGet Package
path: BuildArtifacts/Packages/**/*
- name: Publish coverage artifact
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4
if: matrix.os == 'ubuntu-22.04'
with:
if-no-files-found: warn
name: Coverage
path: BuildArtifacts/TestCoverage/coverlet/*.xml