const_graphs 0.2.2

Blazingly-fast compile-time no-std graph crate
Documentation
name: Tests

on: [push, pull_request]

env:
  CARGO_TERM_COLOR: always

jobs:
  test:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3

    - name: Install nightly toolchain
      uses: actions-rs/toolchain@v1
      with:
        profile: minimal
        toolchain: nightly
        override: true

    - name: Test debug mode
      run: cargo test
    - name: Test release mode
      run: cargo test --release