iso15924 0.1.0

ISO 15924 data.
Documentation
on: [push, pull_request]

name: Test

jobs:
  test-stable:
    name: Test Stable
    runs-on: ubuntu-latest
    steps:
      - name: Checkout sources
        uses: actions/checkout@v1

      - name: Install stable toolchain
        uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          override: true

      - name: Run cargo test
        uses: actions-rs/cargo@v1
        with:
          command: test
  test:
    name: Test 1.34.0
    runs-on: ubuntu-latest
    steps:
      - name: Checkout sources
        uses: actions/checkout@v1

      - name: Install 1.34.0 toolchain
        uses: actions-rs/toolchain@v1
        with:
          toolchain: 1.34.0
          override: true

      - name: Run cargo test
        uses: actions-rs/cargo@v1
        with:
          command: test