Skip to content

Dijkstra Path generic, Closeness Centrality, Iterate Edge with directionality #32

Dijkstra Path generic, Closeness Centrality, Iterate Edge with directionality

Dijkstra Path generic, Closeness Centrality, Iterate Edge with directionality #32

Workflow file for this run

name: Run Tests
on:
workflow_dispatch:
workflow_call:
pull_request:
branches:
- main
push:
tags:
- 'v*'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# Define the Rust versions to test against
rust-version: [ "1.86.0", "stable" ]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Rust ${{ matrix.rust-version }}
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.rust-version }}
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y make
make install-deps
- name: Run Tests and Generate Coverage Report
run: make coverage
- name: Upload Coverage Reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
continue-on-error: true