Chore tasks: CI and dependencies update, repo links fixup #41
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
name: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
default: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: cargo check | |
no-default: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
# NB: we have to use either std or alloc here | |
- run: cargo check --no-default-features --features std | |
- run: cargo check --no-default-features --features alloc | |
features: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
feature: | |
- std | |
- alloc | |
- serde,alloc | |
- serde,std | |
- hex,alloc | |
- hex,std | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Feature ${{matrix.feature}} | |
run: cargo check --no-default-features --features=${{matrix.feature}} | |
- name: Feature ${{matrix.feature}} | |
run: cargo check --features=${{matrix.feature}} | |
platforms: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-22.04, ubuntu-latest, macos-13, macos-latest, windows-2019, windows-latest ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Platform ${{matrix.os}} | |
run: cargo check --workspace --all-features # we skip test targets here to be sure that the main library can be built | |
toolchains: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
toolchain: [ nightly, beta, stable, 1.61.0 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{matrix.toolchain}} | |
- name: Toolchain ${{matrix.toolchain}} | |
run: cargo +${{matrix.toolchain}} check --workspace --all-targets --all-features |