hirola 0.3.0

Hirola is an un-opinionated web framework that is focused on simplicity and predictability
name: Unit Tests

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: stable
          override: true
      - run: cargo test --features dom,app
        working-directory: crates/hirola-core
      - run: cargo test
        working-directory: crates/hirola-macros
      - run: cargo test
        working-directory: crates/hirola-kit
      - run: cargo test