Skip to content

refactor!: rename to match PoC convention #104

refactor!: rename to match PoC convention

refactor!: rename to match PoC convention #104

Workflow file for this run

# Building and testing .NET
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up .NET 8
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build projects
run: dotnet build --no-restore
- name: Run tests and collect coverage
run: dotnet test --no-build --collect:"XPlat Code Coverage"
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}