Skip to content

build(deps): bump FluentAssertions from 6.12.2 to 8.0.0 #336

build(deps): bump FluentAssertions from 6.12.2 to 8.0.0

build(deps): bump FluentAssertions from 6.12.2 to 8.0.0 #336

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "main" ]
paths:
- 'src/**'
- 'PKHeX.CLI.sln'
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build_and_test:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.get_tag.CLI_VERSION }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal