Bump codecov/codecov-action from 4.1.1 to 4.2.0 #441
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: Basic tests | |
jobs: | |
test: | |
strategy: | |
matrix: | |
rust: | |
- stable | |
- 1.70.0 # MSRV | |
- nightly | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 | |
with: | |
persist-credentials: false | |
- name: Install toolchain | |
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
override: true | |
- name: Test debug-mode | |
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 | |
with: | |
command: test | |
args: --all-features | |
- name: Test release-mode | |
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 | |
with: | |
command: test | |
args: --release --all-features | |
- name: Test no_std | |
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 | |
with: | |
command: build | |
args: --no-default-features --features v2,v3,v4 | |
- name: Test only v2-full | |
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 | |
with: | |
command: test | |
args: --no-default-features --tests --features v2,std,paserk | |
- name: Test only v3-full | |
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 | |
with: | |
command: test | |
args: --no-default-features --tests --features v3,std,paserk | |
- name: Test only v4-full | |
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 | |
with: | |
command: test | |
args: --no-default-features --tests --features v4,std,paserk | |
# https://rustwasm.github.io/docs/book/reference/add-wasm-support-to-crate.html#maintaining-ongoing-support-for-webassembly | |
web_assembly: | |
name: WebAssembly - Release build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: | |
- wasm32-unknown-unknown | |
steps: | |
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 | |
with: | |
persist-credentials: false | |
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af | |
with: | |
toolchain: stable | |
target: ${{ matrix.arch }} | |
override: true | |
- uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 | |
with: | |
command: check | |
args: --no-default-features --features v2,v3,v4 --target ${{ matrix.arch }} | |
cross_compilation: | |
name: Linux/ARM/Big-Endian/32-Bit - Release tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: | |
- i686-unknown-linux-gnu | |
- armv7-unknown-linux-gnueabihf | |
- powerpc64-unknown-linux-gnu | |
steps: | |
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 | |
with: | |
persist-credentials: false | |
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af | |
with: | |
toolchain: stable | |
target: ${{ matrix.arch }} | |
override: true | |
- uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 | |
with: | |
use-cross: true | |
command: test | |
args: --release --all-features --target ${{ matrix.arch }} |