domtree 0.2.0

dominance relation calculation
Documentation
name: Nightly

on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]

jobs:
  check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - name: Install latest nightly
        uses: actions-rs/toolchain@v1
        with:
          toolchain: nightly
          override: true
          components: rustfmt, clippy

      - name: Run cargo check
        uses: actions-rs/cargo@v1
        with:
          command: clippy
          args: --release --all-features -- -D warnings

      - name: Run cargo check
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --release --all-features