chore: bump System.Text.Json from 7.0.2 to 8.0.5 in /src/Core/PracticeFusion.MmeCalculator.Core #120
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# for minver | |
fetch-depth: 100 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Build release | |
run: dotnet build --configuration Release src/MmeCalculator.sln | |
- name: Test | |
run: dotnet test src/Test/PracticeFusion.MmeCalculator.UnitTests |