Skip to content

Bump FluentAssertions from 6.2.0 to 8.0.1 #984

Bump FluentAssertions from 6.2.0 to 8.0.1

Bump FluentAssertions from 6.2.0 to 8.0.1 #984

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
- 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/'