generic-vec 0.1.2

a vector implementation that can be used in `no_std` envioronments
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: PR format
on: [pull_request]
jobs:
  fmt:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest]
        rust: [nightly]
        components: ['rustfmt']

    steps:
    - uses: hecrj/setup-rust-action@v1
      with:
        rust-version: ${{ matrix.rust }}
    - uses: actions/checkout@master
    - name: Run tests
      run: rustup component add rustfmt; cargo fmt -- --check