Replace lazy_static by once_cell #351
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: ci | |
on: [push, pull_request] | |
jobs: | |
test_validator: | |
name: Continuous integration | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- rust: 1.70.0 # MSRV | |
- rust: stable | |
- rust: beta | |
- rust: nightly | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: Cache dependencies | |
uses: Swatinem/rust-cache@v2 | |
- name: Build System Info | |
run: rustc --version | |
- name: Tests | |
run: | | |
cargo build --no-default-features | |
cargo test --no-default-features | |
cargo build ${{ matrix.rust == 'stable' && '--all-features' || '--no-default-features --features card,unic,derive' }} | |
cargo test ${{ matrix.rust == 'stable' && '--all-features' || '--no-default-features --features card,unic,derive' }} |