Bump the version to 1.0.0. #191
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] | |
env: | |
minrust: 1.67.1 | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os || 'ubuntu-latest' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
name: | |
- stable | |
- beta | |
- nightly | |
- macOS | |
- Windows | |
include: | |
- name: beta | |
toolchain: beta | |
- name: nightly | |
toolchain: nightly | |
- name: macOS | |
os: macOS-latest | |
- name: Windows | |
os: windows-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Install toolchain | |
id: tc | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.toolchain || 'stable' }} | |
profile: minimal | |
override: true | |
- name: Setup cache | |
if: runner.os != 'macOS' | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-test-${{ steps.tc.outputs.rustc_hash }}-${{ hashFiles('**/Cargo.toml') }} | |
- name: Build all features | |
if: matrix.features == '' | |
run: cargo build --all-features | |
- name: Test all features (macos) | |
if: matrix.features == '' && runner.os == 'macOS' | |
run: sudo -E /Users/runner/.cargo/bin/cargo test --all-features | |
- name: Test all features (Windows) | |
if: matrix.features == '' && runner.os == 'Windows' | |
run: cargo test --all-features | |
- name: Test all features (non-linux and non-macOS) | |
if: matrix.features == '' && runner.os != 'Linux' && runner.os != 'macOS' && runner.os != 'Windows' | |
run: sudo -E /home/runner/.cargo/bin/cargo test --all-features -- --skip set_deadline_policy | |
- name: Test all features (Linux) | |
if: matrix.features == '' && runner.os == 'Linux' | |
run: sudo -E /home/runner/.cargo/bin/cargo test --all-features | |
# run: sudo -E /usr/share/rust/.cargo/bin/cargo test --all-features | |
clippy: | |
name: Run clippy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Install toolchain | |
id: tc | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: minimal | |
override: true | |
- name: Setup cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-clippy-${{ steps.tc.outputs.rustc_hash }}-${{ hashFiles('**/Cargo.toml') }} | |
- run: cargo clippy | |
MSRV: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Install toolchain (${{ env.minrust }}) | |
id: tc | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ env.minrust }} | |
profile: minimal | |
override: true | |
- name: Setup cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-msrv-${{ steps.tc.outputs.rustc_hash }}-${{ hashFiles('**/Cargo.toml') }} | |
- run: cargo check --all-features | |
doc: | |
name: Build docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Install toolchain | |
id: tc | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
profile: minimal | |
override: true | |
- name: Setup cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
key: ${{ runner.os }}-docs-${{ steps.tc.outputs.rustc_hash }}-${{ hashFiles('**/Cargo.toml') }} | |
- name: Build docs | |
run: | | |
cargo doc |