Skip to content

Fix inconsistent index and count when removing vertex from Graph. #193

Fix inconsistent index and count when removing vertex from Graph.

Fix inconsistent index and count when removing vertex from Graph. #193

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-restore --collect "XPlat Code Coverage"
- name: Upload code coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)