Skip to content

chore(deps): bump FluentAssertions from 6.12.1 to 6.12.2 #458

chore(deps): bump FluentAssertions from 6.12.1 to 6.12.2

chore(deps): bump FluentAssertions from 6.12.1 to 6.12.2 #458

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, edited, synchronize]
paths-ignore: ["**.md"]
jobs:
build_and_test:
name: 🛠️ Build and 🧪 Test
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup dotnet
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: build and test
run: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:CoverletOutput=coverage/lcov.info --configuration Release
- name: Coveralls UnitTests
uses: coverallsapp/[email protected]
with:
path-to-lcov: test/dotnet-test-rerun.UnitTests/coverage/lcov.info
flag-name: UnitTests
- name: Coveralls IntegrationTests
uses: coverallsapp/[email protected]
with:
path-to-lcov: test/dotnet-test-rerun.IntegrationTests/coverage/lcov.info
flag-name: IntegrationTests