diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54871c0d37..8cffb4a00f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,33 +71,33 @@ jobs: command: clippy args: --all-features --examples --all --benches - test-package: - name: Test Package - runs-on: ubuntu-latest - strategy: - matrix: - rust: - - stable - - nightly - steps: - - name: Checkout - uses: actions/checkout@v2 + # test-package: + # name: Test Package + # runs-on: ubuntu-latest + # strategy: + # matrix: + # rust: + # - stable + # - nightly + # steps: + # - name: Checkout + # uses: actions/checkout@v2 - - name: Install Rust (${{ matrix.rust }}) - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: ${{ matrix.rust }} - override: true + # - name: Install Rust (${{ matrix.rust }}) + # uses: actions-rs/toolchain@v1 + # with: + # profile: minimal + # toolchain: ${{ matrix.rust }} + # override: true - - name: Install cargo-all-features - run: | - cargo install cargo-all-features + # - name: Install cargo-all-features + # run: | + # cargo install cargo-all-features - - name: Test - run: | - cd package - cargo test-all-features + # - name: Test + # run: | + # cd package + # cargo test-all-features codecov: name: Code Coverage