Bump FluentAssertions from 6.2.0 to 8.0.1 #984
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: | |
push: | |
branches: | |
- master | |
- next | |
tags: | |
- v* | |
pull_request: | |
branches: | |
- master | |
- next | |
jobs: | |
Build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macOS-latest, windows-latest, ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
clean: 'false' | |
fetch-depth: '0' | |
- name: Fetch all history for all tags and branches | |
run: | | |
git fetch --prune | |
- name: π¨ Use .NET Core 2.1 SDK | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '2.1.x' | |
- name: π¨ Use .NET Core 3.1 SDK | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '3.1.x' | |
- name: π dotnet tool restore | |
run: | | |
dotnet tool restore | |
- name: π Restore | |
run: | | |
dotnet nuke Restore --skip | |
- name: β Build | |
run: | | |
dotnet nuke Build --skip | |
- name: π¦ Test | |
run: | | |
dotnet nuke Test Trigger_Code_Coverage_Reports Generate_Code_Coverage_Report_Cobertura Generate_Code_Coverage_Badges Generate_Code_Coverage_Summary Generate_Code_Coverage_Report --skip | |
- name: π¦ Pack | |
run: | | |
dotnet nuke Pack --skip | |
- name: π² Install | |
run: | | |
dotnet nuke Install --skip | |
- name: πΏ Publish Coverage | |
uses: codecov/[email protected] | |
with: | |
name: 'actions-${{ matrix.os }}' | |
- name: πΊ Publish logs | |
if: always() | |
uses: actions/[email protected] | |
with: | |
name: 'logs' | |
path: 'artifacts/logs/' | |
- name: πΊ Publish coverage data | |
if: always() | |
uses: actions/[email protected] | |
with: | |
name: 'coverage' | |
path: 'coverage/' | |
- name: πΊ Publish test data | |
if: always() | |
uses: actions/[email protected] | |
with: | |
name: 'test data' | |
path: 'artifacts/test/' | |
- name: πΊ Publish NuGet Packages | |
if: always() | |
uses: actions/[email protected] | |
with: | |
name: 'nuget' | |
path: 'artifacts/nuget/' |