cell-project 0.1.4

Safe interface for cell projection
Documentation
name: Rust

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@master
    - uses: actions-rs/toolchain@v1
      with:
        profile: minimal
        toolchain: nightly
        components: miri
    - name: Build
      run: cargo +stable build --verbose
    - name: Run tests
      run: cargo +stable test --verbose
    - name: Run miri tests
      run: cargo +nightly miri test --verbose

  format:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@master
    - uses: actions-rs/toolchain@v1
      with:
        profile: minimal
        toolchain: nightly
        components: rustfmt
    - name: Format
      run: cargo fmt --verbose -- --check