Skip to content

Fix "surrounding loops" calculation being reversed #28

Fix "surrounding loops" calculation being reversed

Fix "surrounding loops" calculation being reversed #28

name: Build and Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build Library
run: dotnet build ./Underanalyzer
- name: Execute unit tests
run: dotnet test ./UnderanalyzerTest