Bump version to 0.23 #431
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
name: ci | |
on: [pull_request, push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
channel: [stable, nightly] | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions-rs/cargo@v1 | |
- name: Select Rust channel | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.channel }} | |
override: true | |
- name: Rust Version Info | |
run: rustc --version && cargo --version | |
- name: Cache cargo registry | |
uses: actions/cache@v1 | |
with: | |
path: ~/.cargo/registry | |
key: ${{ runner.os }}-${{ matrix.channel }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} | |
- name: Cache cargo index | |
uses: actions/cache@v1 | |
with: | |
path: ~/.cargo/git | |
key: ${{ runner.os }}-${{ matrix.channel }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} | |
- name: Cache cargo build | |
uses: actions/cache@v1 | |
with: | |
path: target | |
key: ${{ runner.os }}-${{ matrix.channel }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} | |
- name: cargo check | |
run: cargo check --all-features | |
- name: Run all tests | |
run: cargo test --all-features |