Make protected::traits public so that I can make types using Protected<> #419
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 & test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
CARGO_TERM_COLOR: always | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
matrix: | |
rust: | |
- stable | |
# - beta | |
- nightly | |
features: | |
- serde | |
- base64 | |
- simd_backend | |
- default | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
exclude: | |
- rust: stable | |
features: simd_backend | |
- rust: beta | |
features: simd_backend | |
- os: windows-latest | |
features: simd_backend | |
runs-on: ${{ matrix.os }} | |
env: | |
FEATURES: ${{ matrix.rust != 'nightly' && matrix.features || format('{0},nightly', matrix.features) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup ${{ matrix.rust }} Rust toolchain with caching | |
uses: brndnmtthws/rust-action@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
- run: cargo build --features ${{ env.FEATURES }} | |
- run: cargo test --features ${{ env.FEATURES }} | |
env: | |
RUST_BACKTRACE: 1 | |
- run: cargo fmt --all -- --check | |
if: ${{ matrix.rust == 'nightly' && matrix.os == 'ubuntu-latest' }} | |
- run: cargo clippy --features ${{ env.FEATURES }} -- -D warnings |