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 command: clippy
args: --all-features --examples --all --benches args: --all-features --examples --all --benches
test-package: # test-package:
name: Test Package # name: Test Package
runs-on: ubuntu-latest # runs-on: ubuntu-latest
strategy: # strategy:
matrix: # matrix:
rust: # rust:
- stable # - stable
- nightly # - nightly
steps: # steps:
- name: Checkout # - name: Checkout
uses: actions/checkout@v2 # uses: actions/checkout@v2
- name: Install Rust (${{ matrix.rust }}) # - name: Install Rust (${{ matrix.rust }})
uses: actions-rs/toolchain@v1 # uses: actions-rs/toolchain@v1
with: # with:
profile: minimal # profile: minimal
toolchain: ${{ matrix.rust }} # toolchain: ${{ matrix.rust }}
override: true # override: true
- name: Install cargo-all-features # - name: Install cargo-all-features
run: | # run: |
cargo install cargo-all-features # cargo install cargo-all-features
- name: Test # - name: Test
run: | # run: |
cd package # cd package
cargo test-all-features # cargo test-all-features
codecov: codecov:
name: Code Coverage name: Code Coverage