Skip to content

Change calculation logic #11

Change calculation logic

Change calculation logic #11

Workflow file for this run

name: Check PR
on:
pull_request:
types: ['opened', 'edited', 'reopened', 'synchronize']
paths-ignore:
- '.github/**'
workflow_dispatch:
jobs:
test:
runs-on: windows-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal