deprecate GH Actions tests

This commit is contained in:
damirka 2021-07-13 13:42:15 +03:00
parent 87af0609b7
commit a4433cb986

View File

@ -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